Initial revision of animqueue

This commit is contained in:
2021-01-12 14:14:38 -05:00
parent 78f8610eb8
commit 25b9b4cb5d
18 changed files with 785 additions and 308 deletions

View File

@@ -185,8 +185,7 @@ static int pmain(lua_State *L)
// Initialize the builtins, then copy a snapshot of the
// builtins to the registry. This will allow us to restore
// the builtins during source_rebuild operations.
source_load_builtins(L);
source_snapshot_builtins(L);
source_install_and_snapshot_builtins(L);
// Load the lua source.
source_update(L);
@@ -194,9 +193,6 @@ static int pmain(lua_State *L)
// Rebuild the global environment.
source_rebuild(L);
// Run all the autoinit functions.
source_autoinit(L);
dotty(L);
return 0;
}