Changeset 1416 for code/branches/console/src/core/Debug.h
- Timestamp:
- May 25, 2008, 1:11:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/Debug.h
r1089 r1416 206 206 COUT ## x 207 207 208 #if ORX_HARD_DEBUG_LEVEL >= ORX_NONE 209 #define COUT0 \ 210 if (getSoftDebugLevel() >= ORX_NONE) \ 211 COUT_EXEC(0) 212 #else 213 #define COUT0 if (ORX_NONE)\ 214 COUT_EXEC(0) 215 #endif 216 208 217 #if ORX_HARD_DEBUG_LEVEL >= ORX_ERROR 209 218 #define COUT1 \ … … 256 265 #endif /* if ORX_PRINT_DEBUG_OUTPUT */ 257 266 258 #define COUT0 \259 COUT_EXEC(0)260 267 #endif /* ifndef COUT */ 261 268 … … 274 281 CCOUT ## x 275 282 283 #if ORX_HARD_DEBUG_LEVEL >= ORX_NONE 284 #define CCOUT0 \ 285 if (getSoftDebugLevel() >= ORX_NONE) \ 286 CCOUT_EXEC(0) 287 #else 288 #define CCOUT0 if (ORX_NONE)\ 289 CCOUT_EXEC(0) 290 #endif 291 276 292 #if ORX_HARD_DEBUG_LEVEL >= ORX_ERROR 277 293 #define CCOUT1 \ … … 324 340 #endif /* if ORX_PRINT_DEBUG_OUTPUT */ 325 341 326 #define CCOUT0 \327 CCOUT_EXEC(0)328 342 #endif /* ifndef CCOUT */ 329 343
Note: See TracChangeset
for help on using the changeset viewer.