remove unnecessary calls

This commit is contained in:
Jeff Stamerjohn 2022-01-29 13:27:18 -09:00
parent 726258ff71
commit 5c1527c665
2 changed files with 0 additions and 2 deletions

View File

@ -38,7 +38,6 @@ int WINAPI
WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
DaemonApp app;
SetProcessDPIAware();
return app.run(__argc, __argv);
}

View File

@ -84,7 +84,6 @@ DaemonApp::~DaemonApp()
int
DaemonApp::run(int argc, char** argv)
{
SetProcessDPIAware();
// win32 instance needed for threading, etc.
ArchMiscWindows::setInstanceWin32(GetModuleHandle(NULL));