Set console's default language/country/region based on computer settings

This commit is contained in:
JosJuice
2020-12-27 23:11:22 +01:00
parent a1000afacc
commit 27ddf6382b
13 changed files with 278 additions and 5 deletions

View File

@ -5,11 +5,15 @@
// Stub implementation of the Host_* callbacks for tests. These implementations
// do nothing except return default values when required.
#include <memory>
#include <string>
#include <vector>
#include "Core/Host.h"
std::vector<std::string> Host_GetPreferredLocales()
{
return {};
}
void Host_NotifyMapLoaded()
{
}