all repos — mgba @ ab5e392bbc7265a7805d9514b9193a27a89ab57e

mGBA Game Boy Advance Emulator

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

ab5e392bbc7265a7805d9514b9193a27a89ab57e

parent

5a0a60ba6257742b28e54a47c8a3f0b5909c4fbd

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

jump to
M CHANGESCHANGES

@@ -8,6 +8,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: - Qt: Don't rebuild library view if style hasn't changed
M src/platform/qt/LogController.hsrc/platform/qt/LogController.h

@@ -60,7 +60,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 ()) }