From 4d4856495afc3f5a4fb998d067a1df69cee0dab5 Mon Sep 17 00:00:00 2001 From: Jonathan Payne Date: Thu, 23 Feb 2012 16:26:54 -0800 Subject: [PATCH] force portable mode for now. let's see how bad this breaks things. --- Themes/_fallback/Sounds/ScreenOptionsService music.redir | 1 + Themes/test/BGAnimations/ScreenSelectMusic underlay.lua | 1 - Themes/test/ThemeInfo.ini | 2 +- Themes/test/metrics.ini | 2 -- src/StepMania.cpp | 4 +++- 5 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 Themes/_fallback/Sounds/ScreenOptionsService music.redir delete mode 100644 Themes/test/BGAnimations/ScreenSelectMusic underlay.lua diff --git a/Themes/_fallback/Sounds/ScreenOptionsService music.redir b/Themes/_fallback/Sounds/ScreenOptionsService music.redir new file mode 100644 index 0000000000..1f8565ca21 --- /dev/null +++ b/Themes/_fallback/Sounds/ScreenOptionsService music.redir @@ -0,0 +1 @@ +_silent \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenSelectMusic underlay.lua b/Themes/test/BGAnimations/ScreenSelectMusic underlay.lua deleted file mode 100644 index 3c2b2a29b3..0000000000 --- a/Themes/test/BGAnimations/ScreenSelectMusic underlay.lua +++ /dev/null @@ -1 +0,0 @@ -return Def.ActorFrame {}; \ No newline at end of file diff --git a/Themes/test/ThemeInfo.ini b/Themes/test/ThemeInfo.ini index 856c1da7ee..7af2151e33 100644 --- a/Themes/test/ThemeInfo.ini +++ b/Themes/test/ThemeInfo.ini @@ -1,3 +1,3 @@ [ThemeInfo] -DisplayName=Midi Dev Theme +DisplayName=test Author=Midiman \ No newline at end of file diff --git a/Themes/test/metrics.ini b/Themes/test/metrics.ini index 2f0e2571a5..f8ca408206 100644 --- a/Themes/test/metrics.ini +++ b/Themes/test/metrics.ini @@ -1,8 +1,6 @@ [Global] FallbackTheme=default [ScreenTitleMenu] -ChoiceNames="1,4,5,6,PopScreen,7" -ChoicePopScreen="name,Boobs;text,Boobs"; [ScreenGameplay] # LifeP1OnCommand=visible,false # LifeP2OnCommand=visible,false diff --git a/src/StepMania.cpp b/src/StepMania.cpp index 9f8c538dc6..c651c76827 100644 --- a/src/StepMania.cpp +++ b/src/StepMania.cpp @@ -945,10 +945,12 @@ 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;