diff options
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index d9f325b09..5864f1f9d 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -175,13 +175,13 @@ void GMainWindow::BootGame(std::string filename) | |||
| 175 | 175 | ||
| 176 | void GMainWindow::OnMenuLoadFile() | 176 | void GMainWindow::OnMenuLoadFile() |
| 177 | { | 177 | { |
| 178 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)")); | 178 | QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)")); |
| 179 | if (filename.size()) | 179 | if (filename.size()) |
| 180 | BootGame(filename.toLatin1().data()); | 180 | BootGame(filename.toLatin1().data()); |
| 181 | } | 181 | } |
| 182 | 182 | ||
| 183 | void GMainWindow::OnMenuLoadSymbolMap() { | 183 | void GMainWindow::OnMenuLoadSymbolMap() { |
| 184 | QString filename = QFileDialog::getOpenFileName(this, tr("Load symbol map"), QString(), tr("Symbol map (*)")); | 184 | QString filename = QFileDialog::getOpenFileName(this, tr("Load Symbol Map"), QString(), tr("Symbol map (*)")); |
| 185 | if (filename.size()) | 185 | if (filename.size()) |
| 186 | LoadSymbolMap(filename.toLatin1().data()); | 186 | LoadSymbolMap(filename.toLatin1().data()); |
| 187 | } | 187 | } |