various small code cleanups and improvements

Largely refactoring work to make the code somewhat nicer to work with.
This commit is contained in:
itsmattkc
2019-12-26 19:00:08 +11:00
parent 83077c939e
commit 61c60e00d6
87 changed files with 596 additions and 567 deletions
+2 -2
View File
@@ -85,13 +85,13 @@ int main(int argc, char *argv[]) {
#endif
// Start core
olive::core.Start();
Core::instance()->Start();
// Run application loop and receive exit code
int exit_code = a.exec();
// Clear core memory
olive::core.Stop();
Core::instance()->Stop();
return exit_code;
}