From 2ae928ca79ed99ce18bcf87841dbf167e611f5e8 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sun, 20 Apr 2025 18:13:14 +0200 Subject: DolphinNoGUI: Make parameters constant --- Source/Core/DolphinNoGUI/MainNoGUI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp') diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 8598803afd..81051adb78 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -71,7 +71,7 @@ bool Host_UIBlocksControllerState() } static Common::Event s_update_main_frame_event; -void Host_Message(HostMessageID id) +void Host_Message(const HostMessageID id) { if (id == HostMessageID::WMUserStop) s_platform->Stop(); @@ -197,7 +197,7 @@ static std::unique_ptr GetPlatform(const optparse::Values& options) #define main app_main #endif -int main(int argc, char* argv[]) +int main(const int argc, char* argv[]) { Core::DeclareAsHostThread(); @@ -298,7 +298,7 @@ int main(int argc, char* argv[]) return 1; } - Core::AddOnStateChangedCallback([](Core::State state) { + Core::AddOnStateChangedCallback([](const Core::State state) { if (state == Core::State::Uninitialized) s_platform->Stop(); }); -- cgit v1.2.3