From 8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 15 May 2022 14:08:06 +0800 Subject: ... --- src/platform/bootstrap/Bootstrap.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/platform/bootstrap/Bootstrap.cpp') diff --git a/src/platform/bootstrap/Bootstrap.cpp b/src/platform/bootstrap/Bootstrap.cpp index 5dcd0c77..30099b96 100644 --- a/src/platform/bootstrap/Bootstrap.cpp +++ b/src/platform/bootstrap/Bootstrap.cpp @@ -4,8 +4,8 @@ #include "cru/platform/graphics/direct2d/Factory.h" #include "cru/platform/gui/win/UiApplication.h" #else -#include "cru/osx/graphics/quartz/Factory.h" -#include "cru/osx/gui/UiApplication.h" +#include "cru/platform/graphics/quartz/Factory.h" +#include "cru/platform/gui/osx/UiApplication.h" #endif namespace cru::platform::bootstrap { @@ -24,7 +24,7 @@ CreateGraphicsFactory() { #ifdef CRU_PLATFORM_WINDOWS return new cru::platform::graphics::direct2d::DirectGraphicsFactory(); #elif CRU_PLATFORM_OSX - return new cru::platform::graphics::osx::quartz::QuartzGraphicsFactory(); + return new cru::platform::graphics::quartz::QuartzGraphicsFactory(); #else return nullptr; #endif -- cgit v1.2.3