From 9fa5dcc9310a8c6ff8c77a47a86303f7b950dcf3 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Fri, 22 Jun 2018 12:38:38 -0600 Subject: Updated core Updated all core files to prepare for tech demo --- src/client/lua_api/video/itexture.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/lua_api/video/itexture.cpp') diff --git a/src/client/lua_api/video/itexture.cpp b/src/client/lua_api/video/itexture.cpp index 599a448..42de1bd 100644 --- a/src/client/lua_api/video/itexture.cpp +++ b/src/client/lua_api/video/itexture.cpp @@ -16,14 +16,14 @@ extern IrrlichtDevice* device; extern IVideoDriver* driver; //newtexture(string name,{image}) -> {texture} int newitexture(lua_State* L){ - printf("About to create new texture\n"); + //printf("About to create new texture\n"); lua_getfield(L,-1,"image");//"name",{image},image* IImage* im = (IImage*) lua_touserdata(L,-1); lua_pop(L,2);//"name" const char* name = lua_tostring(L,-1); lua_pop(L,1);// - printf("About to create texture\n"); + //printf("About to create texture\n"); ITexture* tex = driver->addTexture(name,im); if(!tex){ lua_pushstring(L,"Failed to create texture!"); -- cgit v1.2.3-70-g09d2