diff options
author | Simon Howard | 2006-12-15 21:10:00 +0000 |
---|---|---|
committer | Simon Howard | 2006-12-15 21:10:00 +0000 |
commit | 11c9d97f115d4fac92964384c4911a701f20daeb (patch) | |
tree | 44de2f5534ceb93b12ae00407a2d3c8eaa16e0e0 | |
parent | 265c0de3419b5123052a10cef276e1221cd0630c (diff) | |
download | chocolate-doom-11c9d97f115d4fac92964384c4911a701f20daeb.tar.gz chocolate-doom-11c9d97f115d4fac92964384c4911a701f20daeb.tar.bz2 chocolate-doom-11c9d97f115d4fac92964384c4911a701f20daeb.zip |
Fix episode 3 bunny end screen (oops!!!!)
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 772
-rw-r--r-- | src/f_finale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/f_finale.c b/src/f_finale.c index a66d20fe..beee6e55 100644 --- a/src/f_finale.c +++ b/src/f_finale.c @@ -622,7 +622,7 @@ void F_BunnyScroll (void) V_MarkRect (0, 0, SCREENWIDTH, SCREENHEIGHT); - scrolled = (signed int) (320 - (finalecount-230)/2); + scrolled = (320 - ((signed int) finalecount-230)/2); if (scrolled > 320) scrolled = 320; if (scrolled < 0) |