mirror of https://github.com/LIJI32/SameBoy.git
Fixed a bug that caused ROMs to run without a window upon changing an emulated revision
This commit is contained in:
parent
3ad28b7a8d
commit
8f21c8ed66
|
@ -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];
|
||||
}];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue