Reorder log levels so more important ones have lower numbers

This commit is contained in:
Jeffrey Pfau 2014-07-10 01:12:25 -07:00
parent b810e38bd7
commit 6c1476403e
1 changed files with 6 additions and 6 deletions

View File

@ -36,12 +36,12 @@ enum GBAError {
};
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
};