all repos — mgba @ d1db97cf0c5a5861446aae0d88d934bcd4441b04

mGBA Game Boy Advance Emulator

Qt: Fix LOG argument order
Vicki Pfau vi@endrift.com
Fri, 28 Jul 2017 16:35:10 -0700
commit

d1db97cf0c5a5861446aae0d88d934bcd4441b04

parent

f15aacd0b6aaf33c17eae8e0ec0558bc124b3bc4

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

jump to
M CHANGESCHANGES

@@ -15,6 +15,7 @@ - GB Memory: Initialize peripheral pointers

- GB MBC: Fix SRAM sizes 4 and 5 - GB Video: Fix 16-bit screenshots (fixes mgba.io/i/826) - GB Core: Fix palette loading when loading a foreign config + - Qt: Fix LOG argument order Misc: - GBA Timer: Use global cycles for timers - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
M src/platform/qt/LogController.hsrc/platform/qt/LogController.h

@@ -63,7 +63,7 @@

static LogController s_global; }; -#define LOG(C, L) (*LogController::global())(_mLOG_CAT_ ## C (), mLOG_ ## L) +#define LOG(C, L) (*LogController::global())(mLOG_ ## L, _mLOG_CAT_ ## C ()) }