full throttle speech,

fixed two bugs appearing in DOTT

svn-id: r3541
This commit is contained in:
Ludvig Strigeus
2002-01-02 11:50:28 +00:00
parent 03abddf888
commit 46dd55cf2a
4 changed files with 17 additions and 14 deletions
+2 -2
View File
@@ -1319,9 +1319,9 @@ void Scumm::o6_roomOps() {
b = pop();
a = pop();
if (a < 160) a=160;
if (a > _scrWidth) a=_scrWidth;
if (b < 160) b=160;
if (b > _scrHeight) b=_scrHeight;
if (a > _scrWidth-160) a=_scrWidth-160;
if (b > _scrWidth-160) b=_scrWidth-160;
_vars[VAR_CAMERA_MIN_X] = a;
_vars[VAR_CAMERA_MAX_X] = b;
break;