Skip to content

Commit 97bd00b

Browse files
committed
mbr: fix cdrom_disable_gameid not working as expected
1 parent d86babd commit 97bd00b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mbr/src/config.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ int loadConfig() {
134134
}
135135
if (!strncmp(lineBuffer, "cdrom_disable_gameid", 20)) {
136136
if (atoi(valuePtr))
137-
settings.flags |= FLAG_ENABLE_GAMEID;
138-
else
139137
settings.flags &= ~(FLAG_ENABLE_GAMEID);
138+
else
139+
settings.flags |= FLAG_ENABLE_GAMEID;
140140
continue;
141141
}
142142
if (!strncmp(lineBuffer, "cdrom_use_dkwdrv", 16)) {

0 commit comments

Comments
 (0)