diff --git a/Themes/_fallback/metrics.ini b/Themes/_fallback/metrics.ini index e95e4f8d90..b48297e2ed 100644 --- a/Themes/_fallback/metrics.ini +++ b/Themes/_fallback/metrics.ini @@ -705,7 +705,9 @@ Format=FormatPercentScore PercentUseRemainder=false ApplyScoreDisplayOptions=true DancePointsDigits=5 - +# +Format="%2d" +# RemainderFormat= # PercentFormat="%2d" @@ -1201,7 +1203,7 @@ Commify=false [RollingNumbersMaxCombo] Fallback="RollingNumbersJudgment" - +[ [ScoreDisplayNormal] FrameX= FrameY= diff --git a/src/StepMania.cpp b/src/StepMania.cpp index c651c76827..a54534da07 100644 --- a/src/StepMania.cpp +++ b/src/StepMania.cpp @@ -945,12 +945,11 @@ int main(int argc, char* argv[]) // Almost everything uses this to read and write files. Load this early. FILEMAN = new RageFileManager( argv[0] ); FILEMAN->MountInitialFilesystems(); - // Force Portable mode right now. - /* + bool bPortable = DoesFileExist("Portable.ini"); if( !bPortable ) FILEMAN->MountUserFilesystems(); - */ + // Set this up next. Do this early, since it's needed for RageException::Throw. LOG = new RageLog;