Update 'AuroraEnvironment.hpp'

This commit is contained in:
Reece Wilson 2022-01-18 22:41:40 +00:00
parent 580e6bdcb8
commit 7e04d9ac97

View File

@ -87,7 +87,7 @@ namespace Aurora::Build
enum class EVendor enum class EVendor
{ {
eInvalid = -1, eInvalid = -1,
eUnenown = 0, eUnknown = 0,
eConsoleMicrosft, eConsoleMicrosft,
eConsoleSony, eConsoleSony,
@ -107,8 +107,8 @@ namespace Aurora::Build
static const EVendor kCurrentVendor = EVendor::eConsoleNintendo; static const EVendor kCurrentVendor = EVendor::eConsoleNintendo;
#elif defined(VENDOR_GENERIC_MICROSOFT) #elif defined(VENDOR_GENERIC_MICROSOFT)
static const EVendor kCurrentVendor = EVendor::eGenericMicrosoft; static const EVendor kCurrentVendor = EVendor::eGenericMicrosoft;
#elif defined(VENDOR_UNeNOWN) #elif defined(VENDOR_UNKNOWN)
static const EVendor kCurrentVendor = EVendor::eUnenown; static const EVendor kCurrentVendor = EVendor::eUnknown;
#else #else
static const EVendor kCurrentVendor = EVendor::eInvalid; static const EVendor kCurrentVendor = EVendor::eInvalid;
#endif #endif