From eb484c25521f94dd9e1878a3921131c7e6533e56 Mon Sep 17 00:00:00 2001 From: eduardodoria Date: Mon, 9 Sep 2024 15:19:45 -0300 Subject: [PATCH] Fixed typo --- engine/core/System.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/core/System.cpp b/engine/core/System.cpp index 01e5827c..2a61e342 100644 --- a/engine/core/System.cpp +++ b/engine/core/System.cpp @@ -16,19 +16,19 @@ using namespace Supernova; #ifdef SUPERNOVA_ANDROID #include "SupernovaAndroid.h" #endif -#ifdef SUPERNOVA_IOS +#ifdef SUPERNOVA_IOS #include "SupernovaIOS.h" #endif -#ifdef SUPERNOVA_WEB +#ifdef SUPERNOVA_WEB #include "SupernovaWeb.h" #endif -#ifdef SUPERNOVA_SOKOL +#ifdef SUPERNOVA_SOKOL #include "SupernovaSokol.h" #endif -#ifdef SUPERNOVA_GLFW +#ifdef SUPERNOVA_GLFW #include "SupernovaGLFW.h" #endif -#ifdef SUPERNOVA_APPLE +#ifdef SUPERNOVA_APPLE #include "SupernovaApple.h" #endif