NOISSUE debranding for real, initial work
This is probably very broken on macOS and Windows and will need a lot of work to complete fully.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
#include "MultiMC.h"
|
||||
#include "Launcher.h"
|
||||
#include "MainWindow.h"
|
||||
#include "LaunchController.h"
|
||||
#include <InstanceList.h>
|
||||
@ -34,12 +34,12 @@ int main(int argc, char *argv[])
|
||||
#endif
|
||||
|
||||
// initialize Qt
|
||||
MultiMC app(argc, argv);
|
||||
Launcher app(argc, argv);
|
||||
|
||||
switch (app.status())
|
||||
{
|
||||
case MultiMC::StartingUp:
|
||||
case MultiMC::Initialized:
|
||||
case Launcher::StartingUp:
|
||||
case Launcher::Initialized:
|
||||
{
|
||||
Q_INIT_RESOURCE(multimc);
|
||||
Q_INIT_RESOURCE(backgrounds);
|
||||
@ -53,9 +53,9 @@ int main(int argc, char *argv[])
|
||||
Q_INIT_RESOURCE(flat);
|
||||
return app.exec();
|
||||
}
|
||||
case MultiMC::Failed:
|
||||
case Launcher::Failed:
|
||||
return 1;
|
||||
case MultiMC::Succeeded:
|
||||
case Launcher::Succeeded:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user