mirror of https://github.com/mgba-emu/mgba.git
Reorder log levels so more important ones have lower numbers
This commit is contained in:
parent
b810e38bd7
commit
6c1476403e
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue