This commit is contained in:
Lior Halphon
2020-05-31 00:54:49 +03:00
committed by GitHub
parent fd97e11919
commit f1ea39f1c6

View File

@@ -839,7 +839,7 @@ static bool softbreak(GB_gameboy_t *gb, char *arguments, char *modifiers, const
if (strcmp(lstrip(arguments), "on") == 0 || !strlen(lstrip(arguments))) {
gb->has_software_breakpoints = true;
}
else if(strcmp(lstrip(arguments), "off") == 0) {
else if (strcmp(lstrip(arguments), "off") == 0) {
gb->has_software_breakpoints = false;
}
else {