mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 19:16:21 +00:00
HDB: Add setInfobarDark() Lua function
This commit is contained in:
parent
c0d9281b45
commit
0dcf1568ee
@ -623,7 +623,14 @@ static int gotoMenu(lua_State *L) {
|
||||
}
|
||||
|
||||
static int setInfobarDark(lua_State *L) {
|
||||
warning("STUB: SET INFOBAR DARK");
|
||||
double value = lua_tonumber(L, 1);
|
||||
|
||||
g_hdb->_lua->checkParameters("setInfobarDark", 1);
|
||||
|
||||
lua_pop(L, 1);
|
||||
|
||||
g_hdb->_window->setInfobarDark((int)value);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user