all repos — mgba @ 688fcbb89cd491cc07b4902b6f7912c7587243b8

mGBA Game Boy Advance Emulator

Qt: Fix variable to be static
Jeffrey Pfau jeffrey@endrift.com
Thu, 04 Jun 2015 23:34:54 -0700
commit

688fcbb89cd491cc07b4902b6f7912c7587243b8

parent

4ec19aac71722cd8e639ed00293737d59b4fa35b

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

jump to
M src/platform/qt/GBAApp.cppsrc/platform/qt/GBAApp.cpp

@@ -19,7 +19,7 @@ }

using namespace QGBA; -GBAApp* g_app = nullptr; +static GBAApp* g_app = nullptr; GBAApp::GBAApp(int& argc, char* argv[]) : QApplication(argc, argv)