summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-07 23:56:23 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-08 00:33:07 +0200
commit6577bbc3c5c47d8e3868f1205284337c6c672744 (patch)
tree7837aa8fc199b519ac45fd1b8312f5fb0e02afa3 /src/citra_qt/main.cpp
parentcitra-qt: Remove callstack widget (diff)
downloadyuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.gz
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.bz2
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.lz
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.xz
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.zst
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.zip
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 9beec69bc..d7fad555f 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -38,7 +38,6 @@
#include "common/scm_rev.h"
#include "common/scope_exit.h"
#include "common/string_util.h"
-#include "core/arm/disassembler/load_symbol_map.h"
#include "core/core.h"
#include "core/file_sys/archive_source_sd_savedata.h"
#include "core/gdbstub/gdbstub.h"
@@ -253,8 +252,6 @@ void GMainWindow::ConnectWidgetEvents() {
void GMainWindow::ConnectMenuEvents() {
// File
connect(ui.action_Load_File, &QAction::triggered, this, &GMainWindow::OnMenuLoadFile);
- connect(ui.action_Load_Symbol_Map, &QAction::triggered, this,
- &GMainWindow::OnMenuLoadSymbolMap);
connect(ui.action_Select_Game_List_Root, &QAction::triggered, this,
&GMainWindow::OnMenuSelectGameListRoot);
connect(ui.action_Exit, &QAction::triggered, this, &QMainWindow::close);
@@ -506,16 +503,6 @@ void GMainWindow::OnMenuLoadFile() {
}
}
-void GMainWindow::OnMenuLoadSymbolMap() {
- QString filename = QFileDialog::getOpenFileName(
- this, tr("Load Symbol Map"), UISettings::values.symbols_path, tr("Symbol Map (*.*)"));
- if (!filename.isEmpty()) {
- UISettings::values.symbols_path = QFileInfo(filename).path();
-
- LoadSymbolMap(filename.toStdString());
- }
-}
-
void GMainWindow::OnMenuSelectGameListRoot() {
QString dir_path = QFileDialog::getExistingDirectory(this, tr("Select Directory"));
if (!dir_path.isEmpty()) {