mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Fix overdraw bug in tower background
This could happen if you held down ACTION in the credits, looks like the background doesn't keep up for some reason. That's another bug to fix, but at least I can fix this overdraw.
This commit is contained in:
@@ -2379,6 +2379,7 @@ void Graphics::drawtowerspikes()
|
||||
|
||||
void Graphics::drawtowerbackground()
|
||||
{
|
||||
FillRect(backBuffer, 0x000000);
|
||||
SDL_BlitSurface(towerbuffer, NULL, towerbuffer_lerp, NULL);
|
||||
ScrollSurface(towerbuffer_lerp, 0, lerp(0, -map.bscroll));
|
||||
SDL_BlitSurface(towerbuffer_lerp,NULL, backBuffer,NULL);
|
||||
|
||||
Reference in New Issue
Block a user