Reverting R4258.

Didn't know we actually *do* save information now in pcsx2_portable.ini :p

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4262 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-01-25 17:42:15 +00:00
parent 2f35a19a88
commit 1b209e265b
2 changed files with 3 additions and 3 deletions

View File

@ -76,8 +76,8 @@ enum UserLocalDataType
// Uses the directory containing PCSX2.exe, or the current working directory (if the PCSX2
// directory could not be determined). This is considered 'portable' mode, and is typically
// detected by PCSX2 on application startup, by looking for a file simply called "portable_install"
// (no file extension) in said locations.
// detected by PCSX2 on application startup, by looking for a pcsx2_portable.ini file in
// said locations.
UserLocalFolder_Portable,
};

View File

@ -51,7 +51,7 @@ static wxFileName GetPortableIniPath()
wxString programFullPath = wxStandardPaths::Get().GetExecutablePath();
wxDirName programDir( wxFileName(programFullPath).GetPath() );
return programDir + "portable_install";
return programDir + "pcsx2_portable.ini";
}
static wxString GetMsg_PortableModeRights()