commit 724439a5
Some minor code cleanups
git-svn-id: https://blockattack.svn.sourceforge.net/svnroot/blockattack/trunk@38 9d7177f8-192b-0410-8f35-a16a89829b06
Changed files
| M | source/code/common.cc before |
diff --git a/source/code/common.cc b/source/code/common.cc
index 04fd4bb..dca8c3c 100644
--- a/source/code/common.cc
+++ b/source/code/common.cc
@@ -33,7 +33,7 @@ string getMyDocumentsPath()
TCHAR pszPath[MAX_PATH];
if (SUCCEEDED(SHGetSpecialFolderPath(NULL, pszPath, CSIDL_PERSONAL, FALSE))) {
// pszPath is now the path that you want
-#ifdef DEBUG
+#if DEBUG
cout << "MyDocuments Located: " << pszPath << endl;
#endif
string theResult= pszPath;