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