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

Small tweak, just in case

This commit is contained in:
Firew0lf 2015-08-22 23:57:05 +02:00
parent d405bba6ca
commit f098e4a68e

View file

@ -154,12 +154,12 @@ static const struct luaL_Reg texture_functions[] = {
// constants
struct { char *name; int value; } texture_constants[] = {
{"PLACE_RAM", 0},
{"PLACE_VRAM", 1},
{"PLACE_TEMP", 2},
{"TYPE_PNG", 0},
{"TYPE_JPEG", 1},
{"TYPE_BMP", 2},
{"PLACE_RAM", SF2D_PLACE_RAM },
{"PLACE_VRAM", SF2D_PLACE_VRAM},
{"PLACE_TEMP", SF2D_PLACE_TEMP},
{"TYPE_PNG", 0 },
{"TYPE_JPEG", 1 },
{"TYPE_BMP", 2 },
{NULL, 0}
};