From dad4c726959153d035b4715708d9bca283b94bba Mon Sep 17 00:00:00 2001 From: Renaud Lepage Date: Wed, 21 Jul 2004 02:39:10 +0000 Subject: [PATCH] Missing _ Before XBOX - Solved the text output bug. Also, forced a D:\\ as system path because path was missing at ragefilemanager::mount in _xbox, lines 142 to 144 --- stepmania/src/RageFileManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageFileManager.cpp b/stepmania/src/RageFileManager.cpp index 4124e082eb..414e0d8442 100644 --- a/stepmania/src/RageFileManager.cpp +++ b/stepmania/src/RageFileManager.cpp @@ -139,8 +139,8 @@ RageFileManager::RageFileManager( CString argv0 ) void RageFileManager::MountInitialFilesystems() { /* Add file search paths, higher priority first. */ -#if defined(XBOX) - RageFileManager::Mount( "dir", SYS_BASE_PATH, "" ); +#if defined(_XBOX) + RageFileManager::Mount( "dir", "D:\\", "" ); //Forced - must be absolute, and SYS_BASE_PATH was not detected #elif defined(LINUX) /* Absolute paths. This is rarely used, eg. by Alsa9Buf::GetSoundCardDebugInfo(). * All paths that start with a slash (eg. "/proc") should use this, so put it