mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +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);
|
||||
break;
|
||||
case 4: // Small pickups
|
||||
setcol(obj.entities[i].realcol);
|
||||
setcolreal(obj.entities[i].realcol);
|
||||
drawhuetile(xp, yp - yoff, obj.entities[i].tile);
|
||||
break;
|
||||
case 5: //Horizontal Line
|
||||
|
||||
Reference in New Issue
Block a user