mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 21:54:15 +00:00
Fix a few remaining graphic gliches in V1 games
svn-id: r14529
This commit is contained in:
parent
87f1cd48d6
commit
2481ebf896
@ -405,7 +405,7 @@ void CostumeRenderer::procC64(int actor) {
|
||||
if (!rep)
|
||||
color = *src++;
|
||||
|
||||
if (0 <= y && y < _outheight && v1.x < _outwidth) {
|
||||
if (0 <= y && y < _outheight && 0 <= v1.x && v1.x < _outwidth) {
|
||||
if (!_mirror) {
|
||||
LINE(0, 0); LINE(2, 2); LINE(4, 4); LINE(6, 6);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user