summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-04-06 12:34:58 +0200
committerGitHub <noreply@github.com>2021-04-06 12:34:58 +0200
commite89ae71cec6390e2cc420af2548caf33afe02280 (patch)
tree9827a25eafb4aee8a5090351f1383c7f2de8a375 /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parenta1ee6ace71ed9c0250e19e8ff11177da350f6a7c (diff)
parent27ddf6382ba312dbed77cf31f5a4a2bf9a013c88 (diff)
Merge pull request #9388 from JosJuice/default-locale
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()
{
}