Skip to content

Commit

Permalink
Reduce savedata init delay to 200ms
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Feb 11, 2014
1 parent caf729e commit fa473da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Core/Dialog/PSPSaveDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@

const static float FONT_SCALE = 0.55f;

// These are rough, it seems to take at least 500ms or so to init, and shutdown depends on threads.
const static int SAVEDATA_INIT_DELAY_US = 500000;
// These are rough, it seems to take at least 100ms or so to init, and shutdown depends on threads.

This comment has been minimized.

Copy link
@sum2012

sum2012 Feb 11, 2014

Collaborator

edit: nothing

// Some games seem to required slightly longer delays to work, so we try 200ms as a compromise.
const static int SAVEDATA_INIT_DELAY_US = 200000;
const static int SAVEDATA_SHUTDOWN_DELAY_US = 2000;


Expand Down

0 comments on commit fa473da

Please sign in to comment.