Updated FAQ (markdown)

Hajime Hoshi 2018-01-03 20:08:56 +09:00
parent 5bc9f555cc
commit 4af2adce9b

4
FAQ.md

@ -39,3 +39,7 @@ func update(screen *ebiten.Image) error {
return nil
}
```
## 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.