Fixed a bug that caused ROMs to run without a window upon changing an emulated revision

This commit is contained in:
Lior Halphon 2025-04-02 23:42:37 +03:00
parent 3ad28b7a8d
commit 8f21c8ed66
1 changed files with 3 additions and 3 deletions

View File

@ -317,7 +317,7 @@ static void debuggerReloadCallback(GB_gameboy_t *gb)
GB_set_border_mode(&_gb, (GB_border_mode_t) [[NSUserDefaults standardUserDefaults] integerForKey:@"GBBorderMode"]);
[self observeStandardDefaultsKey:@"GBBorderMode" withBlock:^(NSNumber *value) {
_borderModeChanged = true;
weakSelf->_borderModeChanged = true;
}];
[self observeStandardDefaultsKey:@"GBHighpassFilter" withBlock:^(NSNumber *value) {
@ -339,11 +339,11 @@ static void debuggerReloadCallback(GB_gameboy_t *gb)
}];
[self observeStandardDefaultsKey:@"GBDebuggerFont" withBlock:^(NSString *value) {
[self updateFonts];
[weakSelf updateFonts];
}];
[self observeStandardDefaultsKey:@"GBDebuggerFontSize" withBlock:^(NSString *value) {
[self updateFonts];
[weakSelf updateFonts];
}];
}