Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ matrix:
- DEPLOY_FILE=OpenRCT2Launcher-macos.zip
- os: linux
sudo: required
dist: trusty
dist: xenial
before_install:
- sudo apt-get update -qq || true
install:
Expand Down
2 changes: 2 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "mainwindow.h"
#include <QApplication>
#include <QGuiApplication>

int main(int argc, char *argv[])
{
Expand All @@ -8,6 +9,7 @@ int main(int argc, char *argv[])
QCoreApplication::setOrganizationName(QStringLiteral("OpenRCT2"));
QCoreApplication::setOrganizationDomain(QStringLiteral("OpenRCT2.org"));
QCoreApplication::setApplicationName(QStringLiteral("OpenRCT2Launcher"));
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);

MainWindow w;
w.show();
Expand Down