postmerge fix
This commit is contained in:
+1
-14
@@ -8,22 +8,9 @@
|
|||||||
#include "../typedefs.h"
|
#include "../typedefs.h"
|
||||||
|
|
||||||
namespace platform {
|
namespace platform {
|
||||||
const std::string SETTINGS_FILE = "settings.toml";
|
|
||||||
const std::string CONTROLS_FILE = "controls.json";
|
|
||||||
const std::string DEFAULT_LOCALE = "en_EN";
|
const std::string DEFAULT_LOCALE = "en_EN";
|
||||||
}
|
}
|
||||||
|
|
||||||
using std::filesystem::path;
|
|
||||||
|
|
||||||
|
|
||||||
path platform::get_settings_file() {
|
|
||||||
return path(SETTINGS_FILE);
|
|
||||||
}
|
|
||||||
|
|
||||||
path platform::get_controls_file() {
|
|
||||||
return path(CONTROLS_FILE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*System locale to engine locale mapping*/
|
/*System locale to engine locale mapping*/
|
||||||
std::string platform::get_locale_by_lang(std::string lang) {
|
std::string platform::get_locale_by_lang(std::string lang) {
|
||||||
if (lang == "ru") {
|
if (lang == "ru") {
|
||||||
@@ -35,7 +22,7 @@ std::string platform::get_locale_by_lang(std::string lang) {
|
|||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
|
||||||
#include "../util/stringutil.h"
|
#include "./stringutil.h"
|
||||||
|
|
||||||
void platform::configure_encoding() {
|
void platform::configure_encoding() {
|
||||||
// set utf-8 encoding to console output
|
// set utf-8 encoding to console output
|
||||||
|
|||||||
Reference in New Issue
Block a user