summaryrefslogtreecommitdiffhomepage
path: root/editor/dpi.cpp
blob: 5893ac9666d077138f78256639505ea6d9fc1a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef _WIN32
#include "app.hpp"
#include <windows.h>

namespace floormat {

void app::set_dpi_aware()
{
    SetProcessDPIAware();
}

} // namespace floormat
#endif