aboutsummaryrefslogtreecommitdiff
path: root/src/lcode.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lcode.js')
-rw-r--r--src/lcode.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lcode.js b/src/lcode.js
index 1235fe4..2887e6d 100644
--- a/src/lcode.js
+++ b/src/lcode.js
@@ -799,8 +799,8 @@ const luaK_exp2RK = function(fs, e) {
let vk = false;
luaK_exp2val(fs, e);
switch (e.k) { /* move constants to 'k' */
- case ek.VTRUE: e.u.info = boolK(fs, 1); vk = true; break;
- case ek.VFALSE: e.u.info = boolK(fs, 0); vk = true; break;
+ case ek.VTRUE: e.u.info = boolK(fs, true); vk = true; break;
+ case ek.VFALSE: e.u.info = boolK(fs, false); vk = true; break;
case ek.VNIL: e.u.info = nilK(fs); vk = true; break;
case ek.VKINT: e.u.info = luaK_intK(fs, e.u.ival); vk = true; break;
case ek.VKFLT: e.u.info = luaK_numberK(fs, e.u.nval); vk = true; break;