From 1267949b8614fd6f801a26a31c61edb563c9dbea Mon Sep 17 00:00:00 2001 From: Rodrigo Delduca Date: Sat, 15 Feb 2025 09:30:55 -0300 Subject: [PATCH] Work in progress --- src/scriptengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scriptengine.cpp b/src/scriptengine.cpp index c5b6050..872c3c4 100644 --- a/src/scriptengine.cpp +++ b/src/scriptengine.cpp @@ -541,7 +541,7 @@ void framework::scriptengine::run() { lua["setup"](); const auto loop = lua["loop"].get(); - const auto engine = lua["engine"].get(); + const auto engine = lua["engine"].get>(); engine->add_loopable(std::make_shared(lua, std::move(loop))); lua["run"](); }