add dpi scaling for windows

fix welcome screen for all platforms (looks slightly different)
This commit is contained in:
Megamouse 2017-06-05 20:50:56 +02:00 committed by Ani
parent 01ea3def54
commit bda945218d
2 changed files with 12 additions and 8 deletions

View file

@ -8,6 +8,10 @@
int main(int argc, char** argv)
{
#ifdef Q_OS_WIN
SetProcessDPIAware();
#endif
rpcs3_app app(argc, argv);
app.Init();
return app.exec();