From b8bbc54c5c920aff1ff1b45a693f50d6d96d61c8 Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 15:45:26 +0500 Subject: Revise style: split include groups --- game/client/world/voxel_anims.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'game/client/world/voxel_anims.cc') diff --git a/game/client/world/voxel_anims.cc b/game/client/world/voxel_anims.cc index 9e5e035..e4d9cf6 100644 --- a/game/client/world/voxel_anims.cc +++ b/game/client/world/voxel_anims.cc @@ -3,7 +3,9 @@ #include "client/world/voxel_anims.hh" #include "core/config/number.hh" + #include "core/io/config_map.hh" + #include "core/math/constexpr.hh" #include "client/globals.hh" @@ -24,8 +26,8 @@ void world::voxel_anims::init(void) void world::voxel_anims::update(void) { if(globals::curtime >= world::voxel_anims::nextframe) { - world::voxel_anims::nextframe = - globals::curtime + static_cast(1000000.0 / static_cast(base_framerate.get_value())); + world::voxel_anims::nextframe = globals::curtime + + static_cast(1000000.0 / static_cast(base_framerate.get_value())); world::voxel_anims::frame += 1U; } } -- cgit