Skip to content

Commit

Permalink
Disabling auto-refresh of game list by default, as it is causing bugs…
Browse files Browse the repository at this point in the history
… sometimes
  • Loading branch information
Hominem te esse committed May 1, 2012
1 parent b9be98d commit 7b88aa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ sclean:
rm -f $(EE_BIN) OPNPS2LD.ELF asm/*.* obj/*.*
echo " * EE core"
$(MAKE) -C ee_core clean
$(MAKE) -C ee_core -f Makefile.alt clean
echo " * Elf Loader"
$(MAKE) -C elfldr clean
echo " * 10K kernel patches"
Expand Down Expand Up @@ -210,7 +211,7 @@ ee_core.s:

alt_ee_core.s:
echo " * alternative EE core"
$(MAKE) -C ee_core clean
$(MAKE) -C ee_core -f Makefile.alt clean
$(MAKE) $(VMC_FLAGS) $(EECORE_DEBUG_FLAGS) -C ee_core -f Makefile.alt
bin2s ee_core/ee_core.elf asm/alt_ee_core.s alt_eecore_elf

Expand Down
2 changes: 1 addition & 1 deletion src/opl.c
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ static void setDefaults(void) {
strncpy(gExitPath, "", 32);
gDefaultDevice = APP_MODE;
gAutosort = 1;
gAutoRefresh = 1;
gAutoRefresh = 0;
gDisableDebug = 0;
gEnableDandR = 0;
gRememberLastPlayed = 0;
Expand Down

0 comments on commit 7b88aa5

Please sign in to comment.