From: Rudolf Polzer Date: Wed, 11 Aug 2010 05:58:19 +0000 (+0200) Subject: remove some stupid debug prints X-Git-Tag: xonotic-v0.5.0~232 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0a784ea43961c5edddb23ac109948e682d1b8eb5;p=xonotic%2Fnetradiant.git remove some stupid debug prints --- diff --git a/plugins/vfspk3/vfs.cpp b/plugins/vfspk3/vfs.cpp index e10c1ce6..b47942ba 100644 --- a/plugins/vfspk3/vfs.cpp +++ b/plugins/vfspk3/vfs.cpp @@ -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) {