Fixes bug preventing name entry with single OTR. (#1894)

This commit is contained in:
Christopher Leggett 2022-11-02 18:00:57 -04:00 committed by GitHub
parent d49a1cd6b3
commit 4156a1d2c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -766,7 +766,7 @@ void FileChoose_RotateToOptions(GameState* thisx) {
*/
void FileChoose_RotateToMain(GameState* thisx) {
FileChooseContext* this = (FileChooseContext*)thisx;
if (this->configMode == CM_QUEST_TO_MAIN || (MIN_QUEST == MAX_QUEST && this->configMode == CM_NAME_ENTRY_TO_MAIN) ||
if (this->configMode == CM_QUEST_TO_MAIN || (MIN_QUEST == MAX_QUEST && this->configMode == CM_NAME_ENTRY_TO_MAIN && this->prevConfigMode != CM_MAIN_MENU) ||
this->configMode == CM_OPTIONS_TO_MAIN) {
this->windowRot -= VREG(16);