diff options
Diffstat (limited to 'src/lua/property.cpp')
| -rw-r--r-- | src/lua/property.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
