forgot viewport resize is a thing.
--- a/hedgewars/uWorld.pas Sat Jan 23 19:49:55 2016 +0100
+++ b/hedgewars/uWorld.pas Sat Jan 23 20:58:23 2016 +0100
@@ -1392,7 +1392,6 @@
inc(CinematicSteps, Lag);
if CinematicSteps > 300 then
CinematicSteps:= 300;
- CinematicBarH:= (ViewHeight * CinematicSteps) div 2048;
end;
end
else if CinematicSteps > 0 then
@@ -1400,7 +1399,6 @@
dec(CinematicSteps, Lag);
if CinematicSteps < 0 then
CinematicSteps:= 0;
- CinematicBarH:= (ViewHeight * CinematicSteps) div 2048;
end;
// render black bars
@@ -1409,6 +1407,7 @@
r.x:= ViewLeftX;
r.w:= ViewWidth;
r.y:= ViewTopY;
+ CinematicBarH:= (ViewHeight * CinematicSteps) div 2048;
r.h:= CinematicBarH;
DrawRect(r, 0, 0, 0, $FF, true);
r.y:= ViewBottomY - r.h;