mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(ui): implement Script_GetGamma
This commit is contained in:
parent
f119a1836f
commit
43728820eb
@ -212,7 +212,11 @@ int32_t Script_GetVideoCaps(lua_State* L) {
|
||||
}
|
||||
|
||||
int32_t Script_GetGamma(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
auto gammaVar = CVar::Lookup("gamma");
|
||||
|
||||
lua_pushnumber(L, 1.0 - gammaVar->GetFloat());
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int32_t Script_SetGamma(lua_State* L) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user