move writable folders to "title's persistent data region".

that allows to launch stepmania from dvd
This commit is contained in:
Vecais Dumais Laacis
2007-08-11 06:47:20 +00:00
parent 33bf9c3155
commit dd544ce5e4
@@ -160,6 +160,12 @@ ArchHooks_Xbox::~ArchHooks_Xbox()
void ArchHooks::MountInitialFilesystems( const RString &sDirOfExecutable )
{
FILEMAN->Mount( "dir", "D:\\", "/" );
// Mount everything game-writable (not counting the editor) to the game title persistent data region ( /E/TDATA/33342530/ )
FILEMAN->Mount( "dir", "T:/Cache", "/Cache" );
FILEMAN->Mount( "dir", "T:/Logs", "/Logs" );
FILEMAN->Mount( "dir", "T:/Save", "/Save" );
FILEMAN->Mount( "dir", "T:/Screenshots", "/Screenshots" );
}
/*