mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
HYPNO: skipped two black pixels lines in the ship view in wet
This commit is contained in:
parent
3382e49338
commit
405fe868d9
@ -526,7 +526,11 @@ void WetEngine::drawPlayer() {
|
||||
else if (_arcadeMode == "Y4")
|
||||
_playerFrameIdx = 2;
|
||||
|
||||
drawImage(*_playerFrames[_playerFrameIdx], 0, 200 - _playerFrames[_playerFrameIdx]->h + 1, true);
|
||||
int offset = 0;
|
||||
if (_levelId == 31) // Ugly, but seems to be necessary
|
||||
offset = 2;
|
||||
|
||||
drawImage(*_playerFrames[_playerFrameIdx], 0, 200 - _playerFrames[_playerFrameIdx]->h + offset, true);
|
||||
}
|
||||
|
||||
void WetEngine::drawHealth() {
|
||||
|
Loading…
Reference in New Issue
Block a user