summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-12-27 23:11:22 +0100
committerJosJuice <josjuice@gmail.com>2021-03-27 10:05:26 +0100
commit27ddf6382ba312dbed77cf31f5a4a2bf9a013c88 (patch)
treeaa7925b0af5a2577aec12f90eff87b9d40cd83ac /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parenta1000afacceef41697588c124f5dd2e7d18ff73b (diff)
Set console's default language/country/region based on computer settings
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
-rw-r--r--Source/Core/DolphinNoGUI/MainNoGUI.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
index 5ab18a38eb..2c9d39a4b0 100644
--- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp
+++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
@@ -10,6 +10,8 @@
#include <cstring>
#include <signal.h>
#include <string>
+#include <vector>
+
#ifndef _WIN32
#include <unistd.h>
#else
@@ -48,9 +50,15 @@ static void signal_handler(int)
s_platform->RequestShutdown();
}
+std::vector<std::string> Host_GetPreferredLocales()
+{
+ return {};
+}
+
void Host_NotifyMapLoaded()
{
}
+
void Host_RefreshDSPDebuggerWindow()
{
}