HDB: Complete draw3DStarsLeft

This commit is contained in:
Nipun Garg 2019-06-18 00:57:26 +05:30 committed by Eugene Sandulenko
parent 6d7d109855
commit 7df02e4116

View File

@ -209,7 +209,7 @@ void DrawMan::draw3DStars() {
void DrawMan::draw3DStarsLeft() {
fillScreen(0);
for (int i = 0; i < kNum3DStars; i++) {
warning("STUB: draw3DStarsLeft: BlitMaskedPic needed");
_starField[_stars3DSlow[i].color]->drawMasked((int)_stars3DSlow[i].x, (int)_stars3DSlow[i].y);
_stars3DSlow[i].x -= _stars3DSlow[i].speed;
if (_stars3DSlow[i].x < kScreenWidth) {
_stars3DSlow[i].x = kScreenWidth - 1;