mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Use Unicode variant of ShellExecuteA.
This commit is contained in:
parent
0571a8c513
commit
750aba1663
1 changed files with 1 additions and 1 deletions
|
@ -1131,7 +1131,7 @@ namespace MainWindow
|
|||
break;
|
||||
|
||||
case ID_FILE_MEMSTICK:
|
||||
ShellExecuteA(NULL, "open", g_Config.memCardDirectory.c_str(), 0, 0, SW_SHOW);
|
||||
ShellExecute(NULL, L"open", ConvertUTF8ToWString(g_Config.memCardDirectory).c_str(), 0, 0, SW_SHOW);
|
||||
break;
|
||||
|
||||
case ID_TOGGLE_PAUSE:
|
||||
|
|
Loading…
Add table
Reference in a new issue