mirror of
https://github.com/edubart/otclient.git
synced 2025-12-18 14:47:11 +01:00
Fix win32 alt bug
This commit is contained in:
@@ -169,7 +169,3 @@ std::string Application::getOs()
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string Application::getBuildDate()
|
||||
{
|
||||
return std::string(__DATE__);
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ public:
|
||||
|
||||
std::string getCharset() { return m_charset; }
|
||||
std::string getBuildCompiler() { return BUILD_COMPILER; }
|
||||
std::string getBuildDate();
|
||||
std::string getBuildDate() { return std::string(__DATE__); }
|
||||
std::string getBuildRevision() { return BUILD_REVISION; }
|
||||
std::string getBuildCommit() { return BUILD_COMMIT; }
|
||||
std::string getBuildType() { return BUILD_TYPE; }
|
||||
|
||||
Reference in New Issue
Block a user