From e906237d768f5b3399d6cd8eebf15bc877a39150 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Dec 2023 23:23:39 -0600 Subject: [PATCH] [nostalgia/core/opengl] Remove debug line --- src/nostalgia/modules/core/src/opengl/gfx.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nostalgia/modules/core/src/opengl/gfx.cpp b/src/nostalgia/modules/core/src/opengl/gfx.cpp index fc6f9d47..42efa873 100644 --- a/src/nostalgia/modules/core/src/opengl/gfx.cpp +++ b/src/nostalgia/modules/core/src/opengl/gfx.cpp @@ -232,7 +232,6 @@ static glutils::GLTexture createTexture( GLsizei w, GLsizei h, const void *pixels) noexcept { - oxDebugf("createTexture(w: {}, h: {}, pixels: ...)", w, h); GLuint texId = 0; glGenTextures(1, &texId); glutils::GLTexture tex(texId);