summaryrefslogtreecommitdiff
path: root/src/lua
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-11-25 08:51:14 +1100
committerjacqueline <me@jacqueline.id.au>2023-11-25 08:51:14 +1100
commite6844a68b61477d1c0a1d225d75c04c7e6678495 (patch)
treec3b81ab0f5d540edddf39ea62d8786942bc799b2 /src/lua
parentf3e4210f24fe27701d29f0ab0735333202622a89 (diff)
downloadtangara-fw-e6844a68b61477d1c0a1d225d75c04c7e6678495.tar.gz
implement play/pause
Diffstat (limited to 'src/lua')
-rw-r--r--src/lua/include/property.hpp2
-rw-r--r--src/lua/property.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lua/include/property.hpp b/src/lua/include/property.hpp
index 207696bd..c1dcf44b 100644
--- a/src/lua/include/property.hpp
+++ b/src/lua/include/property.hpp
@@ -26,6 +26,8 @@ class Property {
Property(const LuaValue&);
Property(const LuaValue&, std::function<bool(const LuaValue&)>);
+ auto Get() -> const LuaValue& { return value_; }
+
auto IsTwoWay() -> bool { return cb_.has_value(); }
auto PushValue(lua_State& s) -> int;
diff --git a/src/lua/property.cpp b/src/lua/property.cpp
index 3e492237..b424a866 100644
--- a/src/lua/property.cpp
+++ b/src/lua/property.cpp
@@ -221,7 +221,7 @@ auto Property::PopValue(lua_State& s) -> bool {
}
break;
case LUA_TBOOLEAN:
- new_val = lua_toboolean(&s, 2);
+ new_val = static_cast<bool>(lua_toboolean(&s, 2));
break;
case LUA_TSTRING:
new_val = lua_tostring(&s, 2);