This commit is contained in:
GabsPuNs
2026-05-14 21:52:21 -04:00
parent 1b2f5c6fe8
commit f8a2d644f5
291 changed files with 7363 additions and 18368 deletions

View File

@@ -144,7 +144,7 @@ static void SaveFullscreenOption(bool fullscreen)
FILE *f = nullptr;
if (fopen_s(&f, path, "w") == 0 && f)
{
fprintf_s(f, "fullscreen=%d\n", fullscreen ? 1 : 0);
fprintf(f, "fullscreen=%d\n", fullscreen ? 1 : 0);
fclose(f);
}
}