Files
@ r3016:b28a60dfd364
Branch filter:
Location: cpp/openttd-patchpack/source/debug.h - annotation
r3016:b28a60dfd364
678 B
text/x-c
(svn r3596) -Codechange: [OSX] changed to use Apple's macros instead of OTTD macros for endian conversion
This increases the execution speed a lot since GCC can't detect the OTTD macro as an endian conversion
while Apple's code uses the instruction to convert endian instead of a series of instructions to produce the same result
Since we don't have that many endian conversions in the game, overall performance should not increase noteworthy
This increases the execution speed a lot since GCC can't detect the OTTD macro as an endian conversion
while Apple's code uses the instruction to convert endian instead of a series of instructions to produce the same result
Since we don't have that many endian conversions in the game, overall performance should not increase noteworthy
r2186:5ee653b1b5e1 r2186:5ee653b1b5e1 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r2210:ed1be54700ae r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1322:ac830d6af496 r2125:87ebf6378cb6 r1678:650b403b6981 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1299:07d5483b3f76 r1847:b42491f4b815 r1299:07d5483b3f76 r2436:963efe8b84cc | /* $Id$ */
#ifndef DEBUG_H
#define DEBUG_H
#ifdef NO_DEBUG_MESSAGES
#define DEBUG(name, level)
#else
#define DEBUG(name, level) if (level == 0 || _debug_ ## name ## _level >= level) debug
extern int _debug_ai_level;
extern int _debug_driver_level;
extern int _debug_grf_level;
extern int _debug_map_level;
extern int _debug_misc_level;
extern int _debug_ms_level;
extern int _debug_net_level;
extern int _debug_spritecache_level;
extern int _debug_oldloader_level;
extern int _debug_ntp_level;
extern int _debug_npf_level;
#endif
void CDECL debug(const char *s, ...);
void SetDebugString(const char *s);
const char *GetDebugString(void);
#endif /* DEBUG_H */
|