Use doubles instead of floats for lua numbers (this unpins the ui task)

This commit is contained in:
jacqueline
2024-01-10 16:59:07 +11:00
parent abdc00fd2d
commit 1b2d791a05
3 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -118,14 +118,14 @@
/* Default configuration ('long long' and 'double', for 64-bit Lua) */
#define LUA_INT_DEFAULT LUA_INT_LONGLONG
#define LUA_INT_DEFAULT LUA_INT_LONG
#define LUA_FLOAT_DEFAULT LUA_FLOAT_DOUBLE
/*
@@ LUA_32BITS enables Lua with 32-bit integers and 32-bit floats.
*/
#define LUA_32BITS 1
#define LUA_32BITS 0
/*