mirror of https://github.com/axmolengine/axmol.git
Application::Platform::OS_MACOS --> Application::Platform::OS_MAC.
This commit is contained in:
parent
9b6d3e6090
commit
c9def73930
|
@ -180,7 +180,7 @@ const LanguageType kLanguagePolish = LanguageType::POLISH;
|
|||
|
||||
const Application::Platform kTargetWindows = Application::Platform::OS_WINDOWS;
|
||||
const Application::Platform kTargetLinux = Application::Platform::OS_LINUX;
|
||||
const Application::Platform kTargetMacOS = Application::Platform::OS_MACOS;
|
||||
const Application::Platform kTargetMacOS = Application::Platform::OS_MAC;
|
||||
const Application::Platform kTargetAndroid = Application::Platform::OS_ANDROID;
|
||||
const Application::Platform kTargetIphone = Application::Platform::OS_IPHONE;
|
||||
const Application::Platform kTargetIpad = Application::Platform::OS_IPAD;
|
||||
|
|
|
@ -18,7 +18,7 @@ public:
|
|||
{
|
||||
OS_WINDOWS,
|
||||
OS_LINUX,
|
||||
OS_MACOS,
|
||||
OS_MAC,
|
||||
OS_ANDROID,
|
||||
OS_IPHONE,
|
||||
OS_IPAD,
|
||||
|
|
|
@ -62,7 +62,7 @@ void Application::setAnimationInterval(double interval)
|
|||
|
||||
Application::Platform Application::getTargetPlatform()
|
||||
{
|
||||
return Platform::OS_MACOS;
|
||||
return Platform::OS_MAC;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue