From 69d527f322a15954469624e3dac8d17ae2855f9b Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sun, 22 Mar 2020 17:24:53 +0000 Subject: [PATCH] presentation: Bugfix for macOS: about -> aboutBsnes --- bsnes/target-bsnes/presentation/presentation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsnes/target-bsnes/presentation/presentation.cpp b/bsnes/target-bsnes/presentation/presentation.cpp index 154f1a71..00e558c4 100644 --- a/bsnes/target-bsnes/presentation/presentation.cpp +++ b/bsnes/target-bsnes/presentation/presentation.cpp @@ -255,7 +255,7 @@ auto Presentation::create() -> void { setAlignment(Alignment::Center); #if defined(PLATFORM_MACOS) - Application::Cocoa::onAbout([&] { about.doActivate(); }); + Application::Cocoa::onAbout([&] { aboutBsnes.doActivate(); }); Application::Cocoa::onActivate([&] { setFocused(); }); Application::Cocoa::onPreferences([&] { settingsWindow.show(2); }); Application::Cocoa::onQuit([&] { doClose(); });