aboutsummaryrefslogtreecommitdiff
path: root/src/lane.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lane.cpp')
-rw-r--r--src/lane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lane.cpp b/src/lane.cpp
index eef9e6e..22147f1 100644
--- a/src/lane.cpp
+++ b/src/lane.cpp
@@ -669,7 +669,7 @@ static void lane_main(Lane* lane_)
669 // At this point, the lane function and arguments are on the stack, possibly preceded by the error handler 669 // At this point, the lane function and arguments are on the stack, possibly preceded by the error handler
670 int const _errorHandlerCount{ lane_->errorTraceLevel == Lane::Minimal ? 0 : 1}; 670 int const _errorHandlerCount{ lane_->errorTraceLevel == Lane::Minimal ? 0 : 1};
671 int const _nargs{ lua_gettop(_L) - 1 - _errorHandlerCount }; 671 int const _nargs{ lua_gettop(_L) - 1 - _errorHandlerCount };
672 DEBUGSPEW_CODE(Universe* _U = universe_get(_L)); 672 DEBUGSPEW_CODE(Universe* _U = Universe::Get(_L));
673 lane_->status = Lane::Running; // Pending -> Running 673 lane_->status = Lane::Running; // Pending -> Running
674 674
675 PrepareLaneHelpers(lane_); 675 PrepareLaneHelpers(lane_);