Skip to content

Commit 116113d

Browse files
committed
temporary disabled fullscreen on linux on startup
1 parent 1b28a42 commit 116113d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/studio/config.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,11 @@ void initConfig(Config* config, Studio* studio, tic_fs* fs)
290290

291291
loadConfigData(fs, OptionsDatPath, &config->data.options, sizeof config->data.options);
292292

293+
#if defined(__TIC_LINUX__)
294+
// do not load fullscreen option on Linux
295+
config->data.options.fullscreen = false;
296+
#endif
297+
293298
tic_api_reset(config->tic);
294299
}
295300

0 commit comments

Comments
 (0)