From b9e0b5f04b322b1e42ce8be4b664349a71747dad Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 17 Apr 2020 21:36:59 +0900 Subject: [PATCH] graphicsdriver/monogame: Change the V direction --- internal/graphicsdriver/monogame/graphics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/graphicsdriver/monogame/graphics.go b/internal/graphicsdriver/monogame/graphics.go index f51cf5c08..9c74cce1c 100644 --- a/internal/graphicsdriver/monogame/graphics.go +++ b/internal/graphicsdriver/monogame/graphics.go @@ -90,7 +90,7 @@ func (g *Graphics) SetVsyncEnabled(enabled bool) { } func (g *Graphics) VDirection() driver.VDirection { - return driver.VDownward + return driver.VUpward } func (g *Graphics) NeedsRestoring() bool {