finished main menu reimplementation

This commit is contained in:
itsmattkc
2019-06-18 08:47:18 -07:00
parent 25564fdb6b
commit 1fec3fb282
11 changed files with 640 additions and 15 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
/***
Olive - Non-Linear Video Editor
Copyright (C) 2019 Olive Team
Copyright (C) 2019 Olive Team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -43,10 +43,13 @@ int main(int argc, char *argv[]) {
format.setProfile(QSurfaceFormat::CoreProfile);
QSurfaceFormat::setDefaultFormat(format);
// Start core
olive::core.Start();
// Run application loop and receive exit code
int exit_code = a.exec();
// Clear core memory
olive::core.Stop();
return exit_code;