fix skip when start is pressed on the title menu

This commit is contained in:
Glenn Maynard
2005-01-08 16:40:32 +00:00
parent fac3d59da6
commit 85ee2cfd41
+6 -1
View File
@@ -215,7 +215,12 @@ bool Screen::JoinInput( const MenuInput &MenuI )
GAMESTATE->JoinPlayer( MenuI.player );
// don't load memory card profiles here. It's slow and can cause a big skip.
PROFILEMAN->LoadLocalProfileFromMachine( MenuI.player );
/* Don't load the local profile, either. It causes a 150+ms skip on my A64 3000+,
* so it probably causes a skip for everyone. We probably shouldn't load this here,
* anyway: leave it unloaded and display "INSERT CARD" until the normal time, and
* load the local profile at the time we would have loaded the memory card if none
* was inserted (via LoadFirstAvailableProfile). */
// PROFILEMAN->LoadLocalProfileFromMachine( MenuI.player );
SCREENMAN->RefreshCreditsMessages();
return true;