diff options
author | crupest <crupest@outlook.com> | 2022-05-15 14:08:06 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-15 14:08:06 +0800 |
commit | 8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (patch) | |
tree | 77e41cc14264060517c0f7ed95837012afb8342e /src/platform/bootstrap | |
parent | 9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752 (diff) | |
download | cru-8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6.tar.gz cru-8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6.tar.bz2 cru-8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6.zip |
...
Diffstat (limited to 'src/platform/bootstrap')
-rw-r--r-- | src/platform/bootstrap/Bootstrap.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |