From 62a61ecad4a65ec551e567b23abbf7089ac98bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Valor=20Mart=C3=ADnez?= Date: Mon, 17 Feb 2025 18:58:48 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20No=20escrivia=20be=20la=20configuraci?= =?UTF-8?q?=C3=B3=20de=20pantalla=20completa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/director.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/director.cpp b/source/director.cpp index 1a2ad1c..cd51348 100644 --- a/source/director.cpp +++ b/source/director.cpp @@ -601,12 +601,12 @@ bool Director::saveConfigFile() else if (options->videoMode == SDL_WINDOW_FULLSCREEN) { - file << "fullScreenMode=SDL_WINDOW_FULLSCREEN\n"; + file << "videoMode=SDL_WINDOW_FULLSCREEN\n"; } else if (options->videoMode == SDL_WINDOW_FULLSCREEN_DESKTOP) { - file << "fullScreenMode=SDL_WINDOW_FULLSCREEN_DESKTOP\n"; + file << "videoMode=SDL_WINDOW_FULLSCREEN_DESKTOP\n"; } file << "windowSize=" + std::to_string(options->windowSize) + "\n";