Created
June 22, 2010 22:07
-
-
Save vermie/449176 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contrib/mmap/src/generator.cpp | 8 ++++---- | |
1 files changed, 4 insertions(+), 4 deletions(-) | |
diff --git a/contrib/mmap/src/generator.cpp b/contrib/mmap/src/generator.cpp | |
index b02c5fc..8f66db9 100644 | |
--- a/contrib/mmap/src/generator.cpp | |
+++ b/contrib/mmap/src/generator.cpp | |
@@ -14,21 +14,21 @@ bool checkDirectories(bool debugOutput) | |
{ | |
vector<string> dirFiles; | |
- if(!getDirContents(dirFiles, "maps") || !dirFiles.size()) | |
+ if(getDirContents(dirFiles, "maps") == LISTFILE_DIRECTORY_NOT_FOUND || !dirFiles.size()) | |
{ | |
printf("'maps' directory is empty or does not exist\n"); | |
return false; | |
} | |
dirFiles.clear(); | |
- if(!getDirContents(dirFiles, "vmaps", "*.vmtree") || !dirFiles.size()) | |
+ if(getDirContents(dirFiles, "vmaps", "*.vmtree") == LISTFILE_DIRECTORY_NOT_FOUND || !dirFiles.size()) | |
{ | |
printf("'vmaps' directory is empty or does not exist\n"); | |
return false; | |
} | |
dirFiles.clear(); | |
- if(!getDirContents(dirFiles, "mmaps")) | |
+ if(getDirContents(dirFiles, "mmaps") == LISTFILE_DIRECTORY_NOT_FOUND) | |
{ | |
printf("'mmaps' directory does not exist\n"); | |
return false; | |
@@ -36,7 +36,7 @@ bool checkDirectories(bool debugOutput) | |
dirFiles.clear(); | |
if(debugOutput) | |
- if(!getDirContents(dirFiles, "Meshes")) | |
+ if(getDirContents(dirFiles, "Meshes") == LISTFILE_DIRECTORY_NOT_FOUND) | |
{ | |
printf("'Meshes' directory does not exist (no place to put debugOutput files)\n"); | |
return false; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment