Unicode path support

This commit is contained in:
Anonymous275
2020-12-26 23:35:43 +02:00
parent ab2a58bf42
commit 9a04665c34
6 changed files with 31 additions and 21 deletions

View File

@@ -7,7 +7,7 @@
///
#pragma once
#include <string>
void PreGame(int argc, char* argv[],const std::string& GamePath);
void PreGame(const std::string& GamePath);
std::string CheckVer(const std::string &path);
void InitGame(const std::string& Dir);
std::string GetGameDir();

View File

@@ -9,7 +9,7 @@
#include <string>
void InitLauncher(int argc, char* argv[]);
void CheckDir(int argc,char* args[]);
std::string GetGamePath();
std::wstring GetGamePath();
std::string GetVer();
std::string GetEN();
extern bool Dev;