Browse Source

Merge branch 'next' of https://github.com/blackberry-gaming/GamePlay into next-ablake

Adam Blake 14 years ago
parent
commit
a06cb499f6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gameplay/src/FileSystem.cpp

+ 1 - 1
gameplay/src/FileSystem.cpp

@@ -40,7 +40,7 @@ FILE* FileSystem::openFile(const char* path, const char* mode)
     if (fp == NULL)
     if (fp == NULL)
     {
     {
         fullPath = __resourcePath;
         fullPath = __resourcePath;
-        fullPath += "../../gameplay-resources/";
+        fullPath += "../../gameplay/";
         fullPath += path;
         fullPath += path;
         fp = fopen(fullPath.c_str(), mode);
         fp = fopen(fullPath.c_str(), mode);
     }
     }