aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/gfx.cpp
diff options
context:
space:
mode:
authorStrangerke2019-09-07 22:49:07 +0200
committerStrangerke2019-09-07 22:49:07 +0200
commitb1db45b718c6ebdc4f159a22c7b8ab1ecf6ce106 (patch)
tree28d2a36576be8708d67c4d97f5bc4b97bfa956b3 /engines/hdb/gfx.cpp
parentd99ba0a12675286d81431cb38f6ef55c02e7d497 (diff)
downloadscummvm-rg350-b1db45b718c6ebdc4f159a22c7b8ab1ecf6ce106.tar.gz
scummvm-rg350-b1db45b718c6ebdc4f159a22c7b8ab1ecf6ce106.tar.bz2
scummvm-rg350-b1db45b718c6ebdc4f159a22c7b8ab1ecf6ce106.zip
HDB: Remove useless returns
Diffstat (limited to 'engines/hdb/gfx.cpp')
-rw-r--r--engines/hdb/gfx.cpp31
1 files changed, 12 insertions, 19 deletions
diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp
index b4f7d22795..42f6f23e5c 100644
--- a/engines/hdb/gfx.cpp
+++ b/engines/hdb/gfx.cpp
@@ -798,16 +798,12 @@ void Gfx::setSky(int skyIndex) {
}
// Setup current sky
- if (tileIndex == _tileSkyStars) {
+ if (tileIndex == _tileSkyStars)
setup3DStars();
- return;
- } else if (tileIndex == _tileSkyStarsLeft) {
+ else if (tileIndex == _tileSkyStarsLeft)
setup3DStarsLeft();
- return;
- } else if (tileIndex == _tileSkyClouds) {
+ else if (tileIndex == _tileSkyClouds)
_skyClouds = getPicture(CLOUDY_SKIES);
- return;
- }
}
void Gfx::setup3DStars() {
@@ -815,9 +811,9 @@ void Gfx::setup3DStars() {
_stars3D[i].x = g_hdb->_rnd->getRandomNumber(g_hdb->_screenWidth - 1);
_stars3D[i].y = g_hdb->_rnd->getRandomNumber(g_hdb->_screenHeight - 1);
_stars3D[i].speed = g_hdb->_rnd->getRandomNumber(255);
- if (g_hdb->isPPC()) {
+ if (g_hdb->isPPC())
_stars3D[i].color = g_hdb->_format.RGBToColor(_stars3D[i].speed, _stars3D[i].speed, _stars3D[i].speed);
- } else {
+ else {
_stars3D[i].speed >>= 1;
_stars3D[i].color = _stars3D[i].speed / 64;
}
@@ -846,9 +842,9 @@ void Gfx::draw3DStars() {
_starField[_stars3D[i].color]->drawMasked((int)_stars3D[i].x, (int)_stars3D[i].y);
_stars3D[i].y += (_stars3D[i].speed >> 5) + 1;
}
- if (_stars3D[i].y > g_hdb->_screenHeight) {
+
+ if (_stars3D[i].y > g_hdb->_screenHeight)
_stars3D[i].y = 0;
- }
}
}
@@ -860,20 +856,19 @@ void Gfx::draw3DStarsLeft() {
else
_starField[_stars3DSlow[i].color]->drawMasked((int)_stars3DSlow[i].x, (int)_stars3DSlow[i].y);
_stars3DSlow[i].x -= _stars3DSlow[i].speed;
- if (_stars3DSlow[i].x < 0) {
+ if (_stars3DSlow[i].x < 0)
_stars3DSlow[i].x = g_hdb->_screenWidth - 1;
- }
}
}
void Gfx::drawSky() {
int tile = _skyTiles[_currentSky - 1];
- if (tile == _tileSkyStars) {
+ if (tile == _tileSkyStars)
draw3DStars();
- } else if (tile == _tileSkyStarsLeft) {
+ else if (tile == _tileSkyStarsLeft)
draw3DStarsLeft();
- } else if (tile == _tileSkyClouds) {
+ else if (tile == _tileSkyClouds) {
static int offset = 0, wait = 0;
for (int j = -64; j < g_hdb->_screenHeight; j += 64) {
for (int i = -64; i < g_hdb->_screenWidth; i += 64) {
@@ -891,7 +886,6 @@ void Gfx::drawSky() {
static const int snowXVList[13] = {0, -1, -1, -2, -2, -1, 0, 0, 0, -1, -2, -1, 0};
-
void Gfx::drawSnow() {
if (_snowInfo.active == false)
return;
@@ -1289,12 +1283,11 @@ void Gfx::drawBonusStars() {
}
void Gfx::drawDebugInfo(Tile *_debugLogo, int fps) {
- char buff[64];
-
_debugLogo->drawMasked(g_hdb->_screenWidth - 32, 0);
// Draw FPS
setCursor(0, 0);
+ char buff[64];
sprintf(buff, "FPS: %d", fps);
drawText(buff);