From 8d8d5708f57f8ff7929318e91203a109af4abb34 Mon Sep 17 00:00:00 2001 From: Thraka Date: Sun, 16 Nov 2025 17:51:24 -0800 Subject: [PATCH] Move variable declaration out of plat to general --- src/86box.c | 1 + src/qt/qt_mainwindow.cpp | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/86box.c b/src/86box.c index 069aea60c..fa7be14fe 100644 --- a/src/86box.c +++ b/src/86box.c @@ -171,6 +171,7 @@ int vid_api = 0; /* (C) video r int vid_cga_contrast = 0; /* (C) video */ int video_fullscreen = 0; /* (C) video */ int video_fullscreen_scale = 0; /* (C) video */ +int fullscreen_ui_visible = 0; /* (C) video */ int enable_overscan = 0; /* (C) video */ int force_43 = 0; /* (C) video */ int video_filter_method = 1; /* (C) video */ diff --git a/src/qt/qt_mainwindow.cpp b/src/qt/qt_mainwindow.cpp index 44bf1269e..87415ba07 100644 --- a/src/qt/qt_mainwindow.cpp +++ b/src/qt/qt_mainwindow.cpp @@ -67,8 +67,6 @@ extern int qt_nvr_save(void); extern bool cpu_thread_running; }; -int fullscreen_ui_visible = 0; - #include #include #include