From ee4ea7233577b2af99ad9b5dcc76f98eb3a7a7ce Mon Sep 17 00:00:00 2001 From: Reuh Date: Thu, 20 Aug 2015 10:49:43 +0200 Subject: [PATCH] Oh well. 3d is actually written 3D --- source/gfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gfx.c b/source/gfx.c index d59c442..9f35809 100644 --- a/source/gfx.c +++ b/source/gfx.c @@ -42,7 +42,7 @@ static int gfx_getFPS(lua_State *L) { static int gfx_set3D(lua_State *L) { bool enable = lua_toboolean(L, 1); - sf2d_set_3d(enable); + sf2d_set_3D(enable); return 0; }