aboutsummaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-10 16:51:01 -0400
committeriamcheeseman <[email protected]>2026-05-10 16:51:01 -0400
commit066bfe5cbd3b2d1cfe36c26d49971f3acfe30f72 (patch)
treec38f3bf3ca178fb0d3d989134fb5f912d7c48291 /platform
parent0ab5229e6bf86bead5e5ca7e0903f23246eca02e (diff)
adjust log capitializing
standards for this project are camel cased logging message. Like this: sentence 1. Sentence 2
Diffstat (limited to 'platform')
-rw-r--r--platform/gl/gl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/gl/gl.c b/platform/gl/gl.c
index 61bcf4d..1045632 100644
--- a/platform/gl/gl.c
+++ b/platform/gl/gl.c
@@ -69,7 +69,7 @@ void ty_platform_init(struct ty_ctx *ctx)
{
ty_log_info("initializing GLFW...");
if (glfwInit() < 0)
- ty_log_fatal(TY_PLATFORM_ERR, "Could not init GLFW");
+ ty_log_fatal(TY_PLATFORM_ERR, "could not init GLFW");
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
@@ -84,13 +84,13 @@ void ty_platform_init(struct ty_ctx *ctx)
);
if (!p.win)
- ty_log_fatal(TY_PLATFORM_ERR, "Could not init GLFW window");
+ ty_log_fatal(TY_PLATFORM_ERR, "could not init GLFW window");
glfwMakeContextCurrent(p.win);
ty_log_info("initializing GLAD...");
if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress))
- ty_log_fatal(TY_PLATFORM_ERR, "Could not init GLAD");
+ ty_log_fatal(TY_PLATFORM_ERR, "could not init GLAD");
struct ty_vec2 vertices[] = {
ty_vec2(-1, -1), ty_vec2(0, 1),