Skip to content

Commit 22106d7

Browse files
committed
Engine: Do not stop scripts in start()
1 parent 8102d67 commit 22106d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/engine/internal/engine.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,9 @@ void Engine::frame()
179179

180180
void Engine::start()
181181
{
182-
if (m_running)
183-
finalize();
182+
// NOTE: Running scripts should be deleted, but this method will probably be removed anyway
183+
/*if (m_running)
184+
finalize();*/
184185

185186
deleteClones();
186187

0 commit comments

Comments
 (0)