mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-29 14:42:26 +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)
|
if (!rep)
|
||||||
color = *src++;
|
color = *src++;
|
||||||
|
|
||||||
if (0 <= y && y < _outheight && v1.x < _outwidth) {
|
if (0 <= y && y < _outheight && 0 <= v1.x && v1.x < _outwidth) {
|
||||||
if (!_mirror) {
|
if (!_mirror) {
|
||||||
LINE(0, 0); LINE(2, 2); LINE(4, 4); LINE(6, 6);
|
LINE(0, 0); LINE(2, 2); LINE(4, 4); LINE(6, 6);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user