From dd8d4e671509f4b33e72973867a855b4693c631d Mon Sep 17 00:00:00 2001 From: Ingo Saitz Date: Mon, 2 Jul 2018 18:26:47 +0200 Subject: [PATCH] Fix CommandLine initialization Commit 7548294333904fba975964fd563980e535f2f160 added _fw_boot and _fw_path, need to make sure they are initialized, too. --- desmume/src/commandline.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/desmume/src/commandline.cpp b/desmume/src/commandline.cpp index 94a6139c0..d3979e3c6 100644 --- a/desmume/src/commandline.cpp +++ b/desmume/src/commandline.cpp @@ -47,6 +47,8 @@ CommandLine::CommandLine() , _bios_arm9(NULL) , _bios_arm7(NULL) , _bios_swi(0) +, _fw_path(NULL) +, _fw_boot(0) , _spu_sync_mode(-1) , _spu_sync_method(-1) , _spu_advanced(0)