git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 12859683b7ebe49f2f37fd4a747cd226726fb91b
parent 27a064caff7d9da30e558fcb2b958f68fd85b78f
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sat, 30 Nov 2024 00:10:01 +0200

Missing super calls

Diffstat:
MiOS/GBCheatsController.m1+
MiOS/GBMenuViewController.m1+
MiOS/GBPalettePicker.m1+
MiOS/GBROMViewController.m1+
MiOS/GBThemesViewController.m1+
5 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/iOS/GBCheatsController.m b/iOS/GBCheatsController.m @@ -227,6 +227,7 @@ - (void)viewWillAppear:(BOOL)animated { + [super viewWillAppear:animated]; [self.navigationController setToolbarHidden:false animated:false]; self.navigationController.toolbar.disableCompactLayout = true; } diff --git a/iOS/GBMenuViewController.m b/iOS/GBMenuViewController.m @@ -147,6 +147,7 @@ static NSString *const tips[] = { [UIView animateWithDuration:0.25 animations:^{ _effectView.alpha = 0; }]; + [super viewWillDisappear:animated]; } - (void)viewDidLayoutSubviews diff --git a/iOS/GBPalettePicker.m b/iOS/GBPalettePicker.m @@ -509,6 +509,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath - (void)viewWillAppear:(BOOL)animated { [self.tableView reloadData]; + [super viewWillAppear:animated]; } @end diff --git a/iOS/GBROMViewController.m b/iOS/GBROMViewController.m @@ -324,6 +324,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath - (void)viewWillAppear:(BOOL)animated { [self.tableView reloadData]; + [super viewWillAppear:animated]; } - (NSString *)rootPath diff --git a/iOS/GBThemesViewController.m b/iOS/GBThemesViewController.m @@ -99,6 +99,7 @@ - (void)viewWillAppear:(BOOL)animated { [self.tableView reloadData]; + [super viewWillAppear:animated]; } @end

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.