From f0cc06c7388acb32b86301965c5b2547e4e3b919 Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 13:51:50 +0500 Subject: Displace threading into core (qfortress graft) --- game/client/main.cc | 2 +- game/client/world/chunk_mesher.cc | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'game/client') diff --git a/game/client/main.cc b/game/client/main.cc index 06a0da2..51d4670 100644 --- a/game/client/main.cc +++ b/game/client/main.cc @@ -7,11 +7,11 @@ #include "core/resource/resource.hh" #include "core/utils/epoch.hh" +#include "core/threading.hh" #include "core/version.hh" #include "shared/game.hh" #include "shared/splash.hh" -#include "shared/threading.hh" #include "client/gui/window_title.hh" #include "client/io/glfw.hh" diff --git a/game/client/world/chunk_mesher.cc b/game/client/world/chunk_mesher.cc index 9f5ce6c..53c4882 100644 --- a/game/client/world/chunk_mesher.cc +++ b/game/client/world/chunk_mesher.cc @@ -4,12 +4,13 @@ #include "core/math/crc64.hh" +#include "core/threading.hh" + #include "shared/world/chunk.hh" #include "shared/world/dimension.hh" #include "shared/world/voxel_registry.hh" #include "shared/coord.hh" -#include "shared/threading.hh" #include "client/world/chunk_quad.hh" #include "client/world/voxel_atlas.hh" -- cgit