Skip to content

Commit

Permalink
Disabled JIT for now
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamLCobb committed Dec 8, 2015
1 parent 7fe2650 commit 96031e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iNDS/emulator/iNDSEmulatorViewController.mm
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ - (void)screenChanged:(NSNotification*)notification
- (void)loadROM {
EMU_setWorkingDir([[self.game.path stringByDeletingLastPathComponent] fileSystemRepresentation]);
EMU_init([iNDSGame preferredLanguage]);
EMU_setCPUMode([[NSUserDefaults standardUserDefaults] boolForKey:@"enableLightningJIT"] ? 2 : 1);
EMU_setCPUMode(1);//[[NSUserDefaults standardUserDefaults] boolForKey:@"enableLightningJIT"] ? 2 : 1);
EMU_loadRom([self.game.path fileSystemRepresentation]);
EMU_change3D(1);

Expand Down
2 changes: 1 addition & 1 deletion iNDS/settings/iNDSSettingsViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 6 ;
}*/

return 6;
return 5;
}

-(IBAction)back:(id)sender
Expand Down

0 comments on commit 96031e8

Please sign in to comment.