mirror of https://github.com/mgba-emu/mgba.git
Qt: (GameController) Add a missing va_end call to the log handler lambda
This commit is contained in:
parent
06f02ef873
commit
2141868cf2
1
CHANGES
1
CHANGES
|
@ -55,6 +55,7 @@ Bugfixes:
|
||||||
- GBA Audio: Fix 8-bit writes to audio channel 3 frequency
|
- GBA Audio: Fix 8-bit writes to audio channel 3 frequency
|
||||||
- ARM7: ARMHotplugDetach should call deinit
|
- ARM7: ARMHotplugDetach should call deinit
|
||||||
- Qt: Fix window being too tall after exiting fullscreen
|
- Qt: Fix window being too tall after exiting fullscreen
|
||||||
|
- Qt: Fix a missing va_end call in the log handler lambda within the GameController constructor
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Handle saving input settings better
|
- Qt: Handle saving input settings better
|
||||||
- Debugger: Free watchpoints in addition to breakpoints
|
- Debugger: Free watchpoints in addition to breakpoints
|
||||||
|
|
|
@ -121,6 +121,7 @@ GameController::GameController(QObject* parent)
|
||||||
va_list argc;
|
va_list argc;
|
||||||
va_copy(argc, args);
|
va_copy(argc, args);
|
||||||
int immediate = va_arg(argc, int);
|
int immediate = va_arg(argc, int);
|
||||||
|
va_end(argc);
|
||||||
controller->unimplementedBiosCall(immediate);
|
controller->unimplementedBiosCall(immediate);
|
||||||
}
|
}
|
||||||
if (level == GBA_LOG_FATAL) {
|
if (level == GBA_LOG_FATAL) {
|
||||||
|
|
Loading…
Reference in New Issue