aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJohannes Schickel2009-06-10 12:47:19 +0000
committerJohannes Schickel2009-06-10 12:47:19 +0000
commitad98719ba260caa602aa38522ce06f85bb621f1b (patch)
treef6f3c4cabd91456d563753dfdbf73858906cffcd /common
parente487347921fc751a85b221fa7a8c9c455cc595d6 (diff)
downloadscummvm-rg350-ad98719ba260caa602aa38522ce06f85bb621f1b.tar.gz
scummvm-rg350-ad98719ba260caa602aa38522ce06f85bb621f1b.tar.bz2
scummvm-rg350-ad98719ba260caa602aa38522ce06f85bb621f1b.zip
Fix documentation for debugC and debugCN, relying on special debug levels.
svn-id: r41425
Diffstat (limited to 'common')
-rw-r--r--common/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/debug.h b/common/debug.h
index 888c71adbb..95779af617 100644
--- a/common/debug.h
+++ b/common/debug.h
@@ -137,7 +137,7 @@ void debugN(int level, const char *s, ...) GCC_PRINTF(2, 3);
/**
* Print a debug message to the text console (stdout), but only if
- * the specified level does not exceed the value of gDebugLevel OR
+ * the specified level does not exceed the value of gDebugLevel AND
* if the specified special debug level is active.
* As a rule of thumb, the more important the message, the lower the level.
* Automatically appends a newline.
@@ -148,7 +148,7 @@ void debugC(int level, uint32 debugChannels, const char *s, ...) GCC_PRINTF(3, 4
/**
* Print a debug message to the text console (stdout), but only if
- * the specified level does not exceed the value of gDebugLevel OR
+ * the specified level does not exceed the value of gDebugLevel AND
* if the specified special debug level is active.
* As a rule of thumb, the more important the message, the lower the level.
* Does not append a newline automatically.