Qt: Fix LOG argument order

This commit is contained in:
Vicki Pfau 2017-07-28 16:35:10 -07:00
parent 5a0a60ba62
commit ab5e392bbc
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Bugfixes:
- 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

View File

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