--- Config.cpp.orig	Thu Dec  6 12:24:31 2012
+++ Config.cpp	Thu Dec  6 12:25:42 2012
@@ -44,12 +44,8 @@ const int NUM_BRUSHES = (sizeof(brushColours)/sizeof(b
 
 std::string Config::findFile( const std::string& name )
 {
-  std::string p( "data/" );
+  std::string p( DEFAULT_RESOURCE_PATH "/" );
   FILE *fd = fopen( (p+name).c_str(), "rb"  );
-  if ( !fd ) {
-    p = std::string( DEFAULT_RESOURCE_PATH "/" );
-    fd = fopen( (p+name).c_str(), "rb" );
-  }
   if ( fd ) {
     fclose(fd);
     return p+name;
