diff options
Diffstat (limited to 'game/src/game.c')
-rw-r--r-- | game/src/game.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/game.c b/game/src/game.c index 10c69aa..dc2248b 100644 --- a/game/src/game.c +++ b/game/src/game.c | |||
@@ -215,7 +215,7 @@ static void Resize(Game* game, int width, int height) { | |||
215 | game->height = height; | 215 | game->height = height; |
216 | 216 | ||
217 | GfxCore* gfxcore = gfx_get_core(game->gfx); | 217 | GfxCore* gfxcore = gfx_get_core(game->gfx); |
218 | gfx_set_viewport(gfxcore, width, height); | 218 | gfx_set_viewport(gfxcore, 0, 0, width, height); |
219 | 219 | ||
220 | resize_plugin(game, width, height); | 220 | resize_plugin(game, width, height); |
221 | } | 221 | } |