Prevent memory viewer errors on reset
This commit is contained in:
parent
bc876ec30c
commit
ca9249d4db
@ -278,7 +278,7 @@ static void printImage(GB_gameboy_t *gb, uint32_t *image, uint8_t height,
|
|||||||
if (hex_controller) {
|
if (hex_controller) {
|
||||||
/* Verify bank sanity, especially when switching models. */
|
/* Verify bank sanity, especially when switching models. */
|
||||||
[(GBMemoryByteArray *)(hex_controller.byteArray) setSelectedBank:0];
|
[(GBMemoryByteArray *)(hex_controller.byteArray) setSelectedBank:0];
|
||||||
[self hexUpdateBank:self.memoryBankInput];
|
[self hexUpdateBank:self.memoryBankInput ignoreErrors:true];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -911,7 +911,7 @@ static void printImage(GB_gameboy_t *gb, uint32_t *image, uint8_t height,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)hexUpdateBank:(NSControl *)sender
|
- (void)hexUpdateBank:(NSControl *)sender ignoreErrors: (bool)ignore_errors
|
||||||
{
|
{
|
||||||
NSString *error = [self captureOutputForBlock:^{
|
NSString *error = [self captureOutputForBlock:^{
|
||||||
uint16_t addr, bank;
|
uint16_t addr, bank;
|
||||||
@ -954,12 +954,17 @@ static void printImage(GB_gameboy_t *gb, uint32_t *image, uint8_t height,
|
|||||||
[hex_controller reloadData];
|
[hex_controller reloadData];
|
||||||
}];
|
}];
|
||||||
|
|
||||||
if (error) {
|
if (error && !ignore_errors) {
|
||||||
NSBeep();
|
NSBeep();
|
||||||
[GBWarningPopover popoverWithContents:error onView:sender];
|
[GBWarningPopover popoverWithContents:error onView:sender];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (IBAction)hexUpdateBank:(NSControl *)sender
|
||||||
|
{
|
||||||
|
[self hexUpdateBank:sender ignoreErrors:false];
|
||||||
|
}
|
||||||
|
|
||||||
- (IBAction)hexUpdateSpace:(NSPopUpButtonCell *)sender
|
- (IBAction)hexUpdateSpace:(NSPopUpButtonCell *)sender
|
||||||
{
|
{
|
||||||
self.memoryBankItem.enabled = [sender indexOfSelectedItem] != GBMemoryEntireSpace;
|
self.memoryBankItem.enabled = [sender indexOfSelectedItem] != GBMemoryEntireSpace;
|
||||||
|
Loading…
Reference in New Issue
Block a user