summaryrefslogtreecommitdiffstats
path: root/game/client/main.cc
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-09-11 15:45:26 +0500
committeruntodesu <kirill@untode.su>2025-09-11 15:45:26 +0500
commitb8bbc54c5c920aff1ff1b45a693f50d6d96d61c8 (patch)
tree8b2903b313a71f8851705be400fc3e0a8317028f /game/client/main.cc
parenta6ea7b7bbc66327cc2a957496f65dcfab5361cee (diff)
downloadvoxelius-b8bbc54c5c920aff1ff1b45a693f50d6d96d61c8.tar.bz2
voxelius-b8bbc54c5c920aff1ff1b45a693f50d6d96d61c8.zip
Revise style: split include groups
Diffstat (limited to 'game/client/main.cc')
-rw-r--r--game/client/main.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/game/client/main.cc b/game/client/main.cc
index d7fcb1e..a1185e2 100644
--- a/game/client/main.cc
+++ b/game/client/main.cc
@@ -2,8 +2,10 @@
#include "core/io/cmdline.hh"
#include "core/io/config_map.hh"
+
#include "core/resource/image.hh"
#include "core/resource/resource.hh"
+
#include "core/utils/epoch.hh"
#include "core/threading.hh"
@@ -13,7 +15,9 @@
#include "shared/splash.hh"
#include "client/gui/window_title.hh"
+
#include "client/io/glfw.hh"
+
#include "client/resource/sound_effect.hh"
#include "client/resource/texture_gui.hh"
@@ -122,8 +126,8 @@ static void on_glfw_window_focus(GLFWwindow* window, int focused)
ImGui_ImplGlfw_WindowFocusCallback(window, focused);
}
-static void GLAD_API_PTR on_opengl_message(
- GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, const void* param)
+static void GLAD_API_PTR on_opengl_message(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message,
+ const void* param)
{
spdlog::info("opengl: {}", reinterpret_cast<const char*>(message));
}