Fixed bug in ABC res patch after cleaning up code.

This commit is contained in:
dkeruza-neo
2025-03-09 16:19:41 -04:00
parent 03ccfd3449
commit 6e751f16f0
+2 -2
View File
@@ -370,8 +370,8 @@ int isTestMode()
void myGlBindTexture(GLenum target, GLuint texture)
{
// const char *targetName = "";
// switch (target)
curTarget = target;
curTextureID = texture;
void (*_glBindTexture)(GLenum, GLuint) = dlsym(RTLD_NEXT, "glBindTexture");
_glBindTexture(target, texture);