fix error message

This commit is contained in:
Luca Conte 2025-03-11 11:29:02 +01:00
parent d22e2b8e81
commit 4cc7e98998
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ void init(void) {
INFO("Compiling Fragment Shader..."); INFO("Compiling Fragment Shader...");
ShaderCompileResult fragmentShader = readAndCompileShaderFromFile("src/shaders/fragment.glsl", GL_FRAGMENT_SHADER); ShaderCompileResult fragmentShader = readAndCompileShaderFromFile("src/shaders/fragment.glsl", GL_FRAGMENT_SHADER);
if (!fragmentShader.success) { if (!fragmentShader.success) {
FATAL("Failed to compile Vertex Shader"); FATAL("Failed to compile Fragment Shader");
exit(1); exit(1);
} }