all repos — mgba @ a2b3129bc0748e7373443a61259c52231216b704

mGBA Game Boy Advance Emulator

Qt: Fix uninitialized memory issue
Vicki Pfau vi@endrift.com
Sat, 16 Nov 2019 12:17:13 -0800
commit

a2b3129bc0748e7373443a61259c52231216b704

parent

2bacae3075d4191c26d0f66e40da7ae360923bf8

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

jump to
M src/platform/qt/CoreController.hsrc/platform/qt/CoreController.h

@@ -230,7 +230,7 @@ bool m_videoSync = VIDEO_SYNC;

bool m_autosave; bool m_autoload; - int m_autosaveCounter; + int m_autosaveCounter = 0; int m_fastForward = false; int m_fastForwardForced = false;