From 1e6586f18779efa30b6cda5335bba5b5afbba7ff Mon Sep 17 00:00:00 2001 From: Asdow <20314541+Asdow@users.noreply.github.com> Date: Sun, 23 Nov 2025 17:02:21 +0200 Subject: [PATCH] Set functions static --- sgp/sgp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sgp/sgp.cpp b/sgp/sgp.cpp index b74b6fd6..95b1e53a 100644 --- a/sgp/sgp.cpp +++ b/sgp/sgp.cpp @@ -56,7 +56,7 @@ static vfs::FileLogger *vfslog = NULL; int iWindowedMode; -void SHOWEXCEPTION(sgp::Exception& ex) +static void SHOWEXCEPTION(sgp::Exception& ex) { try { _ExceptionMessage(ex); @@ -67,7 +67,7 @@ void SHOWEXCEPTION(sgp::Exception& ex) } } -void SHOWEXCEPTION(vfs::Exception& ex) +static void SHOWEXCEPTION(vfs::Exception& ex) { try { _ExceptionMessage(ex); @@ -617,7 +617,7 @@ void ShutdownStandardGamingPlatform(void) #include "MPJoinScreen.h" -vfs::String getGameID() +static vfs::String getGameID() { static vfs::String _id; static bool has_id = false;