summaryrefslogtreecommitdiffstats
path: root/src/citra/config.cpp
diff options
context:
space:
mode:
authorpolaris- <nagatospam@gmail.com>2015-10-12 02:07:58 +0200
committerpolaris- <nagatospam@gmail.com>2015-10-12 02:07:58 +0200
commit2b7316a379103edf4d22893e0f4432e6415eabfa (patch)
treefc4f6cc31b7288689726fbe379755a610a854b7f /src/citra/config.cpp
parentUse BreakpointAddress struct instead of passing address directly (diff)
downloadyuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.gz
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.bz2
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.lz
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.xz
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.tar.zst
yuzu-2b7316a379103edf4d22893e0f4432e6415eabfa.zip
Diffstat (limited to '')
-rw-r--r--src/citra/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp
index af343e9fe..2f13c29a2 100644
--- a/src/citra/config.cpp
+++ b/src/citra/config.cpp
@@ -76,7 +76,7 @@ void Config::ReadValues() {
// Miscellaneous
Settings::values.log_filter = glfw_config->Get("Miscellaneous", "log_filter", "*:Info");
- // GDBStubebugging
+ // Debugging
Settings::values.use_gdbstub = glfw_config->GetBoolean("Debugging", "use_gdbstub", false);
Settings::values.gdbstub_port = glfw_config->GetInteger("Debugging", "gdbstub_port", 24689);
}