Browse Source

Merge pull request #20 from blackberry-gaming/next-sgrenier

Fixed run-time error on windows platform
Steve Grenier 14 years ago
parent
commit
91e43d5af3
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)
     {
         fullPath = __resourcePath;
-        fullPath += "../../gameplay-resources/";
+        fullPath += "../../gameplay/";
         fullPath += path;
         fp = fopen(fullPath.c_str(), mode);
     }