Fix Windows Qt6 builds

- Fix warning about no return on main
- Fix program not starting when built with Qt6

Signed-off-by: Lenny McLennington <lenny@sneed.church>
This commit is contained in:
Lenny McLennington 2023-02-04 15:28:16 +00:00
parent 01b52ea6be
commit 03552edbb7
No known key found for this signature in database
GPG Key ID: F0467078ECA45FCB
2 changed files with 2 additions and 1 deletions

View File

@ -91,4 +91,5 @@ int main(int argc, char *argv[])
case Application::Succeeded:
return 0;
}
return 0;
}

View File

@ -10,7 +10,7 @@
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="x86" publicKeyToken="6595b64144ccf1df" language="*"/>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
</dependentAssembly>
</dependency>
<description>Custom Minecraft launcher for managing multiple installs.</description>