mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix wrong function being used to set color of coins
It should be setcolreal(), and not setcol(). Fixes #347.
This commit is contained in:
@@ -1754,7 +1754,7 @@ void Graphics::drawentities()
|
|||||||
FillRect(backBuffer, prect, obj.entities[i].realcol);
|
FillRect(backBuffer, prect, obj.entities[i].realcol);
|
||||||
break;
|
break;
|
||||||
case 4: // Small pickups
|
case 4: // Small pickups
|
||||||
setcol(obj.entities[i].realcol);
|
setcolreal(obj.entities[i].realcol);
|
||||||
drawhuetile(xp, yp - yoff, obj.entities[i].tile);
|
drawhuetile(xp, yp - yoff, obj.entities[i].tile);
|
||||||
break;
|
break;
|
||||||
case 5: //Horizontal Line
|
case 5: //Horizontal Line
|
||||||
|
|||||||
Reference in New Issue
Block a user