From de20db8e87d59e923428410527c25b2a2626a899 Mon Sep 17 00:00:00 2001 From: Ryan Flegel Date: Tue, 11 May 2004 23:30:50 +0000 Subject: [PATCH] - fixed vscroll a bit--forgot foreground SVN-Revision: 1119 --- src/world.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.cpp b/src/world.cpp index ae262df54..b05c1421f 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -245,7 +245,7 @@ World::draw() { for (x = 0; x < 21; ++x) { - Tile::draw(32*x - fmodf(scroll_x, 32), y * 32, + Tile::draw(32*x - fmodf(scroll_x, 32), y * 32 - fmodf(scroll_y, 32), level->fg_tiles[(int)y + (int)(scroll_y / 32)][(int)x + (int)(scroll_x / 32)]); } } -- 2.11.0