diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-01-10 16:58:29 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-01-10 16:59:07 +1100 |
| commit | 1b2d791a05954fd161376e3ddce0d44f74fcc6c0 (patch) | |
| tree | acf97e17272d86c5d8b16247baf2f8e220126dd5 /src/lua/include | |
| parent | abdc00fd2dbe013bffe8a303fe899e209006f7ce (diff) | |
| download | tangara-fw-1b2d791a05954fd161376e3ddce0d44f74fcc6c0.tar.gz | |
Use doubles instead of floats for lua numbers (this unpins the ui task)
Diffstat (limited to 'src/lua/include')
| -rw-r--r-- | src/lua/include/property.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/include/property.hpp b/src/lua/include/property.hpp index c1dcf44b..a8a88125 100644 --- a/src/lua/include/property.hpp +++ b/src/lua/include/property.hpp @@ -17,7 +17,7 @@ namespace lua { using LuaValue = - std::variant<std::monostate, int, float, bool, std::string, audio::Track>; + std::variant<std::monostate, int, bool, std::string, audio::Track>; using LuaFunction = std::function<int(lua_State*)>; class Property { |
