VERSIÓ 1.4.4
- [NEW] Nou sistema de fonts funcionant ja internament
This commit is contained in:
6
lua.cpp
6
lua.cpp
@@ -310,15 +310,13 @@ extern "C" {
|
||||
break;
|
||||
case 1:
|
||||
index = luaL_checkinteger(L, 1);
|
||||
const uint8_t old = subpal(index,index);
|
||||
lua_pushinteger(L, old);
|
||||
lua_pushinteger(L, subpal(index,index));
|
||||
return 1;
|
||||
break;
|
||||
case 2:
|
||||
index = luaL_checkinteger(L, 1);
|
||||
color = luaL_checkinteger(L, 2);
|
||||
const uint8_t old = subpal(index, color);
|
||||
lua_pushinteger(L, old);
|
||||
lua_pushinteger(L, subpal(index, color));
|
||||
return 1;
|
||||
break;
|
||||
case 3:
|
||||
|
||||
Reference in New Issue
Block a user