get rid of the old WII folder and put DSP.ini where it belongs

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1149 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2008-11-12 10:03:42 +00:00
parent bde5118cfb
commit 3d56c23904
22 changed files with 5 additions and 8 deletions

View File

@ -26,9 +26,9 @@ std::string HLE_IPC_BuildFilename(const char* _pFilename, int _size)
char Buffer[128];
memcpy(Buffer, _pFilename, _size);
std::string Filename(WII_SYS_DIR);
std::string Filename(FULL_WII_USER_DIR);
if (Buffer[1] == '0')
Filename += std::string("/title"); // this looks and feel like an hack...
Filename += std::string("title"); // this looks and feel like an hack...
Filename += File::SanitizePath(Buffer);