make high dpi support a flag in applicationconfig

This commit is contained in:
2024-08-05 15:47:39 +10:00
parent d896f2eaa7
commit b08fc1c51b
2 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,7 @@ let app = Application(
width: 1280,
height: 720,
title: "Voxelotl Demo",
flags: .resizable,
flags: [ .resizable, .highDPI ],
vsyncMode: .on(interval: 1)))
exit(app.run())