From 7e04d9ac97f0770db46dac2a6b6ad98b24864d1d Mon Sep 17 00:00:00 2001 From: Reece Wilson Date: Tue, 18 Jan 2022 22:41:40 +0000 Subject: [PATCH] Update 'AuroraEnvironment.hpp' --- AuroraEnvironment.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AuroraEnvironment.hpp b/AuroraEnvironment.hpp index bc53fa6..4e0c451 100644 --- a/AuroraEnvironment.hpp +++ b/AuroraEnvironment.hpp @@ -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