Reorder log levels so more important ones have lower numbers
Jeffrey Pfau jeffrey@endrift.com
Thu, 10 Jul 2014 01:12:25 -0700
1 files changed,
6 insertions(+),
6 deletions(-)
jump to
M
src/gba/gba.h
→
src/gba/gba.h
@@ -36,12 +36,12 @@ GBA_OUT_OF_MEMORY = -1
}; enum GBALogLevel { - GBA_LOG_STUB = 0x01, - GBA_LOG_DEBUG = 0x02, - GBA_LOG_INFO = 0x04, - GBA_LOG_WARN = 0x08, - GBA_LOG_ERROR = 0x10, - GBA_LOG_FATAL = 0x20, + GBA_LOG_FATAL = 0x01, + GBA_LOG_ERROR = 0x02, + GBA_LOG_WARN = 0x04, + GBA_LOG_INFO = 0x08, + GBA_LOG_DEBUG = 0x10, + GBA_LOG_STUB = 0x20, GBA_LOG_GAME_ERROR = 0x100 };