all repos — mgba @ 6c1476403ef5b90bedef9840d7ef08244eaac37b

mGBA Game Boy Advance Emulator

Reorder log levels so more important ones have lower numbers
Jeffrey Pfau jeffrey@endrift.com
Thu, 10 Jul 2014 01:12:25 -0700
commit

6c1476403ef5b90bedef9840d7ef08244eaac37b

parent

b810e38bd7278a97e9699646aaa20c4a35bb638d

1 files changed, 6 insertions(+), 6 deletions(-)

jump to
M src/gba/gba.hsrc/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 };