Fix typo in log msg

This commit is contained in:
tomcw 2022-07-02 16:59:03 +01:00
parent a1509608f9
commit c9f5df1e1e
1 changed files with 1 additions and 1 deletions

View File

@ -806,7 +806,7 @@ static void RepeatInitialization(void)
res = GetFrame().GetBestDisplayResolutionForFullScreen(bestWidth, bestHeight, g_cmdLine.userSpecifiedWidth, g_cmdLine.userSpecifiedHeight);
if (res)
LogFileOutput("Best resolution for -fs-height/height=x switch(es): Width=%d, Height=%d\n", bestWidth, bestHeight);
LogFileOutput("Best resolution for -fs-width/height=x switch(es): Width=%d, Height=%d\n", bestWidth, bestHeight);
else
LogFileOutput("Failed to set parameter for -fs-width/height=x switch(es)\n");
}