mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix LOG argument order
This commit is contained in:
parent
f15aacd0b6
commit
d1db97cf0c
1
CHANGES
1
CHANGES
|
@ -15,6 +15,7 @@ Bugfixes:
|
||||||
- GB MBC: Fix SRAM sizes 4 and 5
|
- GB MBC: Fix SRAM sizes 4 and 5
|
||||||
- GB Video: Fix 16-bit screenshots (fixes mgba.io/i/826)
|
- GB Video: Fix 16-bit screenshots (fixes mgba.io/i/826)
|
||||||
- GB Core: Fix palette loading when loading a foreign config
|
- GB Core: Fix palette loading when loading a foreign config
|
||||||
|
- Qt: Fix LOG argument order
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Timer: Use global cycles for timers
|
- GBA Timer: Use global cycles for timers
|
||||||
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
||||||
|
|
|
@ -63,7 +63,7 @@ private:
|
||||||
static LogController s_global;
|
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 ())
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue