diff options
author | bunnei <bunneidev@gmail.com> | 2015-10-23 04:41:39 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-10-23 04:41:39 +0200 |
commit | 8c385a3fc640b66d8d082ad81889363199b3036c (patch) | |
tree | a5f48dd2ed0fb820842031ef38cb48e9da969568 /src/citra_qt/main.cpp | |
parent | Merge pull request #1187 from bunnei/shader-gen (diff) | |
parent | change file path encoding to Local8bit() (diff) | |
download | yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.tar yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.tar.gz yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.tar.bz2 yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.tar.lz yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.tar.xz yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.tar.zst yuzu-8c385a3fc640b66d8d082ad81889363199b3036c.zip |
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r-- | src/citra_qt/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index d25220e25..bcff6be64 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -355,7 +355,7 @@ void GMainWindow::UpdateRecentFiles() { } void GMainWindow::OnGameListLoadFile(QString game_path) { - BootGame(game_path.toLatin1().data()); + BootGame(game_path.toLocal8Bit().data()); } void GMainWindow::OnMenuLoadFile() { @@ -367,7 +367,7 @@ void GMainWindow::OnMenuLoadFile() { settings.setValue("romsPath", QFileInfo(filename).path()); StoreRecentFile(filename); - BootGame(filename.toLatin1().data()); + BootGame(filename.toLocal8Bit().data()); } } @@ -379,7 +379,7 @@ void GMainWindow::OnMenuLoadSymbolMap() { if (!filename.isEmpty()) { settings.setValue("symbolsPath", QFileInfo(filename).path()); - LoadSymbolMap(filename.toLatin1().data()); + LoadSymbolMap(filename.toLocal8Bit().data()); } } @@ -400,7 +400,7 @@ void GMainWindow::OnMenuRecentFile() { QString filename = action->data().toString(); QFileInfo file_info(filename); if (file_info.exists()) { - BootGame(filename.toLatin1().data()); + BootGame(filename.toLocal8Bit().data()); StoreRecentFile(filename); // Put the filename on top of the list } else { // Display an error message and remove the file from the list. |