fix typo in enum for screen sizing (#1377)

This commit is contained in:
Brankale 2022-02-25 20:28:21 +01:00 committed by GitHub
parent 550db94a87
commit 2c21787f33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ enum
{ {
screenSizing_Even, screenSizing_Even,
screenSizing_EmphTop, screenSizing_EmphTop,
screenSizing_EmphBop, screenSizing_EmphBot,
screenSizing_Auto, screenSizing_Auto,
screenSizing_TopOnly, screenSizing_TopOnly,
screenSizing_BotOnly, screenSizing_BotOnly,

View File

@ -522,7 +522,7 @@ void EmuThread::run()
if (mainScreenPos[0] == 1) if (mainScreenPos[0] == 1)
guess = screenSizing_EmphTop; guess = screenSizing_EmphTop;
else else
guess = screenSizing_EmphBop; guess = screenSizing_EmphBot;
} }
if (guess != autoScreenSizing) if (guess != autoScreenSizing)