summaryrefslogtreecommitdiff
path: root/src/models.c
diff options
context:
space:
mode:
authorjussi2023-11-15 18:34:34 +0200
committerjussi2023-11-15 18:34:34 +0200
commit841aa897f1868075134162cc71593ac9c3473115 (patch)
treecc03b824d1a16a086aecc7a3246d9b434b7d3118 /src/models.c
parent7b10306ed5c87517800a6058ad84e27c866f81c6 (diff)
downloadreilua-enhanced-841aa897f1868075134162cc71593ac9c3473115.tar.gz
reilua-enhanced-841aa897f1868075134162cc71593ac9c3473115.tar.bz2
reilua-enhanced-841aa897f1868075134162cc71593ac9c3473115.zip
GC_UNLOAD build time define and replaced with flag to change it at runtime.
Diffstat (limited to 'src/models.c')
-rw-r--r--src/models.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/models.c b/src/models.c
index 9ff64d8..ae0a5cb 100644
--- a/src/models.c
+++ b/src/models.c
@@ -1471,7 +1471,6 @@ int lmodelsCreateMaterial( lua_State *L ) {
if ( strcmp( "texture", (char*)lua_tostring( L, -2 ) ) == 0 ) {
Texture *texture = uluaGetTexture( L, lua_gettop( L ) );
material.maps[map].texture = *texture;
- printf( "Material Create material.maps[map].texture.id = %d\n", material.maps[map].texture.id );
}
else if ( strcmp( "color", (char*)lua_tostring( L, -2 ) ) == 0 ) {
material.maps[map].color = uluaGetColor( L, lua_gettop( L ) );