diff --git a/FAQ.md b/FAQ.md index 16e30b5..bb67ff3 100644 --- a/FAQ.md +++ b/FAQ.md @@ -38,4 +38,8 @@ func update(screen *ebiten.Image) error { } return nil } -``` \ No newline at end of file +``` + +## Ebiten's screen is scaled / blurred on high-DPI screen. Can I disable this scaling? In other words, can I have a high-DPI mode? + +You can pass `1 / ebiten.DeviceScaleFactor()` to `Run`'s scale argument so that you can get the screen without scaling by the device scale. \ No newline at end of file