1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00

Oh well. 3d is actually written 3D

This commit is contained in:
Reuh 2015-08-20 10:49:43 +02:00
parent 9ab25f7518
commit ee4ea72335

View file

@ -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;
}