From 8ff5e548ed3b6a124ba1ef730db14a6a6715c63d Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 4 Nov 2025 15:45:46 -0600 Subject: [PATCH] chore(console): declare statics as static --- src/console/Device.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/console/Device.cpp b/src/console/Device.cpp index 986a66c..fd3dd0b 100644 --- a/src/console/Device.cpp +++ b/src/console/Device.cpp @@ -7,14 +7,14 @@ #include static CGxDevice* s_device; -CVar* s_cvGxMaximize; -CVar* s_cvGxResolution; -CVar* s_cvGxWidescreen; -CVar* s_cvGxWindow; -DefaultSettings s_defaults; -bool s_hwDetect; -bool s_hwChanged; -CGxFormat s_requestedFormat; +static CVar* s_cvGxMaximize; +static CVar* s_cvGxResolution; +static CVar* s_cvGxWidescreen; +static CVar* s_cvGxWindow; +static DefaultSettings s_defaults; +static bool s_hwDetect; +static bool s_hwChanged; +static CGxFormat s_requestedFormat; bool CVGxMaximizeCallback(CVar*, const char*, const char*, void*) { // TODO