We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ct
1 parent 7013310 commit 74fb74cCopy full SHA for 74fb74c
desktop_version/src/Editor.cpp
@@ -701,8 +701,7 @@ void editorrender(void)
701
fillboxabs((customentities[i].x*8)- (ed.levx*40*8),(customentities[i].y*8)- (ed.levy*30*8),32,8,graphics.getRGB(255,255,255));
702
break;
703
case 8: // Coin
704
- graphics.huetilesetcol(8);
705
- graphics.drawhuetile((customentities[i].x * 8) - (ed.levx * 40 * 8), (customentities[i].y * 8) - (ed.levy * 30 * 8), 48);
+ graphics.drawhuetile((customentities[i].x * 8) - (ed.levx * 40 * 8), (customentities[i].y * 8) - (ed.levy * 30 * 8), 48, graphics.huetilegetcol(8));
706
fillboxabs((customentities[i].x * 8) - (ed.levx * 40 * 8), (customentities[i].y * 8) - (ed.levy * 30 * 8), 8, 8, graphics.getRGB(255, 164, 164));
707
708
case 9: //Shiny Trinket
desktop_version/src/Render.cpp
@@ -1955,15 +1955,13 @@ void gamerender(void)
1955
graphics.bprint(304 - coinstring.length() * 8, 231, coinstring, color, color, 196);
1956
1957
if (!graphics.notextoutline) {
1958
- graphics.setcolreal(graphics.getRGB(0, 0, 0));
1959
- graphics.drawhuetile(310, 230, 48);
1960
- graphics.drawhuetile(312, 230, 48);
1961
- graphics.drawhuetile(311, 229, 48);
1962
- graphics.drawhuetile(311, 231, 48);
+ graphics.drawhuetile(310, 230, 48, graphics.getRGB(0, 0, 0));
+ graphics.drawhuetile(312, 230, 48, graphics.getRGB(0, 0, 0));
+ graphics.drawhuetile(311, 229, 48, graphics.getRGB(0, 0, 0));
+ graphics.drawhuetile(311, 231, 48, graphics.getRGB(0, 0, 0));
1963
}
1964
1965
- graphics.setcolreal(graphics.getRGB(color, color, 196));
1966
- graphics.drawhuetile(311, 230, 48);
+ graphics.drawhuetile(311, 230, 48, graphics.getRGB(color, color, 196));
1967
1968
1969
if (map.roomtexton)
0 commit comments