mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 18:19:43 +01:00
Interpolate all-sides warp BG
Again, it was only noticeable at 40% speed that it updated at 1000/34 FPS before.
This commit is contained in:
parent
66ac035576
commit
a69bb84eaf
1 changed files with 1 additions and 1 deletions
|
@ -2007,7 +2007,7 @@ void Graphics::drawbackground( int t )
|
||||||
|
|
||||||
for (int i = 10 ; i >= 0; i--)
|
for (int i = 10 ; i >= 0; i--)
|
||||||
{
|
{
|
||||||
temp = (i << 4) + backoffset;
|
temp = (i << 4) + lerp(backoffset - 1, backoffset);
|
||||||
setwarprect(160 - temp, 120 - temp, temp * 2, temp * 2);
|
setwarprect(160 - temp, 120 - temp, temp * 2, temp * 2);
|
||||||
if (i % 2 == warpskip)
|
if (i % 2 == warpskip)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue