From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- game/client/world/voxel_atlas.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game/client/world/voxel_atlas.cc') diff --git a/game/client/world/voxel_atlas.cc b/game/client/world/voxel_atlas.cc index c327deb..1018747 100644 --- a/game/client/world/voxel_atlas.cc +++ b/game/client/world/voxel_atlas.cc @@ -131,7 +131,8 @@ GLuint world::voxel_atlas::plane_texture(std::size_t plane_id) { if(plane_id < planes.size()) { return planes[plane_id].gl_texture; - } else { + } + else { return 0; } } -- cgit