aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.cpp
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-10-24 10:33:02 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-10-24 10:33:02 +0200
commit8745a54f88f31cd51dc86c96039ebe0b3e98f5ea (patch)
treef27eba088bfbda6aed4f9d70e514ec87a5d553fc /src/lanes.cpp
parent54acd7514dc0a2e9d593dd6312eae90ae6c0d6b5 (diff)
downloadlanes-8745a54f88f31cd51dc86c96039ebe0b3e98f5ea.tar.gz
lanes-8745a54f88f31cd51dc86c96039ebe0b3e98f5ea.tar.bz2
lanes-8745a54f88f31cd51dc86c96039ebe0b3e98f5ea.zip
Added strong types UserValueCount and UnusedInt
Diffstat (limited to 'src/lanes.cpp')
-rw-r--r--src/lanes.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lanes.cpp b/src/lanes.cpp
index 4ebe20c..572d8f9 100644
--- a/src/lanes.cpp
+++ b/src/lanes.cpp
@@ -718,7 +718,8 @@ LUAG_FUNC(configure)
718 } 718 }
719 719
720 STACK_CHECK(L_, 2); 720 STACK_CHECK(L_, 2);
721 DeepFactory::PushDeepProxy(DestState{ L_ }, _U->timerLinda, 0, LookupMode::LaneBody, L_); // L_: settings M timerLinda 721 UserValueCount const _nuv{ 0 }; // no uservalue in the linda
722 DeepFactory::PushDeepProxy(DestState{ L_ }, _U->timerLinda, _nuv, LookupMode::LaneBody, L_); // L_: settings M timerLinda
722 lua_setfield(L_, -2, "timerLinda"); // L_: settings M 723 lua_setfield(L_, -2, "timerLinda"); // L_: settings M
723 STACK_CHECK(L_, 2); 724 STACK_CHECK(L_, 2);
724 725