diff options
Diffstat (limited to 'source/NBT.h')
-rw-r--r-- | source/NBT.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/NBT.h b/source/NBT.h index a05e574de..75ff6e361 100644 --- a/source/NBT.h +++ b/source/NBT.h @@ -203,9 +203,9 @@ public: ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Dumping the tree (DEBUG-only)
-#ifdef _DEBUG
+#if (defined(_DEBUG) && defined(_WIN32))
void DumpTree(const cNBTTree * a_Tree, int a_Level = 0);
-#endif // _DEBUG
+#endif // (_DEBUG && _WIN32)
|