]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
remove some stupid debug prints
authorRudolf Polzer <divverent@alientrap.org>
Wed, 11 Aug 2010 05:58:19 +0000 (07:58 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Wed, 11 Aug 2010 05:58:19 +0000 (07:58 +0200)
plugins/vfspk3/vfs.cpp

index e10c1ce636c1a5f9417883267833dee3dd7e684c..b47942ba9149e2394fdaafc35cc2783b47c26902 100644 (file)
@@ -315,11 +315,9 @@ void InitDirectory(const char* directory, ArchiveModules& archiveModules)
 
   for(j = 0; j < g_numForbiddenDirs; ++j)
   {
-    printf("match against %s?\n", g_strForbiddenDirs[j]);
     if(!string_compare_nocase_upper(directory, g_strForbiddenDirs[j])
     || (string_length(directory) > string_length(g_strForbiddenDirs[j]) && directory[string_length(directory) - string_length(g_strForbiddenDirs[j]) - 1] == '/' && !string_compare_nocase_upper(directory + string_length(directory) - string_length(g_strForbiddenDirs[j]), g_strForbiddenDirs[j])))
       break;
-    printf("not matched\n");
   }
   if(j < g_numForbiddenDirs)
   {