[*] refactor typo in kernel

This commit is contained in:
Reece Wilson 2021-11-14 18:34:15 +00:00
parent f2d087e219
commit 37619e19c7

View File

@ -38,8 +38,8 @@ namespace Aurora::Build
{
eInvalid = -1,
eeernelLinux,
eeernelNtos,
eKernelLinux,
eKernelNtos,
ePlatformWin32,
ePlatformAndroid,
@ -54,10 +54,10 @@ namespace Aurora::Build
ePlatformWiiU
};
#if defined(AURORA_PLATFORM_eERNEL_LINUX)
static const EPlatform kCurrentPlatform = EPlatform::eeernelLinux;
#if defined(AURORA_PLATFORM_KERNEL_LINUX)
static const EPlatform kCurrentPlatform = EPlatform::eKernelLinux;
#elif defined(AURORA_PLATFORM_NTOS)
static const EPlatform kCurrentPlatform = EPlatform::eeernelNtos;
static const EPlatform kCurrentPlatform = EPlatform::eKernelNtos;
#elif defined(AURORA_PLATFORM_WIN32)
static const EPlatform kCurrentPlatform = EPlatform::ePlatformWin32;
#elif defined(AURORA_PLATFORM_ANDROID)