diff options
author | Simon Howard | 2008-09-24 18:09:44 +0000 |
---|---|---|
committer | Simon Howard | 2008-09-24 18:09:44 +0000 |
commit | 617e75e9a4c79a21b68385fe69066ab3cab353ae (patch) | |
tree | e7e69ffbefa3ef04bbdd6d3c88af3de5e411bb3d | |
parent | fb176d6121a9313cd98cd015045d239ddfef3994 (diff) | |
download | chocolate-doom-617e75e9a4c79a21b68385fe69066ab3cab353ae.tar.gz chocolate-doom-617e75e9a4c79a21b68385fe69066ab3cab353ae.tar.bz2 chocolate-doom-617e75e9a4c79a21b68385fe69066ab3cab353ae.zip |
Remove redundant destscreen,destview variables
Subversion-branch: /branches/raven-branch
Subversion-revision: 1267
-rw-r--r-- | src/heretic/doomdef.h | 2 | ||||
-rw-r--r-- | src/heretic/r_main.c | 10 |
2 files changed, 0 insertions, 12 deletions
diff --git a/src/heretic/doomdef.h b/src/heretic/doomdef.h index c60fa350..e7f5c064 100644 --- a/src/heretic/doomdef.h +++ b/src/heretic/doomdef.h @@ -68,8 +68,6 @@ // ticcmd_t #include "d_ticcmd.h" -extern byte *destview, *destscreen; // PC direct to screen pointers - #define SAVEGAMENAME "hticsav" #define SAVEGAMENAMECD "c:\\heretic.cd\\hticsav" diff --git a/src/heretic/r_main.c b/src/heretic/r_main.c index b19b87c3..c20d5d03 100644 --- a/src/heretic/r_main.c +++ b/src/heretic/r_main.c @@ -802,16 +802,6 @@ void R_SetupFrame(player_t * player) BorderTopRefresh = false; UpdateState |= I_MESSAGES; } - - destview = destscreen + (viewwindowx >> 2) + viewwindowy * 80; - -#if 0 - { - static int frame; - memset(I_VideoBuffer, frame, SCREENWIDTH * SCREENHEIGHT); - frame++; - } -#endif } /* |