Skip to content

Commit

Permalink
genesis options try to fix scale being finicky
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Mattello <[email protected]>
  • Loading branch information
JoeMatt committed Feb 16, 2022
1 parent 77383c1 commit cbecf6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ extension PVGenesisEmulatorCore: CoreOptional {
.init(title: "Vertical", description: "Vertical borders only", value: 1),
.init(title: "Horizontal", description: "horizontal borders only", value: 2),
.init(title: "Full", description: "Full borders", value: 3),
])
],
defaultValue: 0)

static var allOptions: [CoreOption] = [overscan, gg_extra]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,8 @@ - (BOOL)loadFileAtPath:(NSString*)path error:(NSError**)error


if (retro_load_game(&info)) {
[self readOptions];

if ([self.batterySavesPath length]) {
[[NSFileManager defaultManager] createDirectoryAtPath:self.batterySavesPath withIntermediateDirectories:YES attributes:nil error:NULL];

Expand All @@ -536,7 +538,6 @@ - (BOOL)loadFileAtPath:(NSString*)path error:(NSError**)error
//#warning "No clue what this does, JM"
// if (system_hw == SYSTEM_MCD)
// bram_load();
[self readOptions];

[self executeFrame];

Expand Down

0 comments on commit cbecf6f

Please sign in to comment.