summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/heretic/doomdef.h2
-rw-r--r--src/heretic/r_main.c10
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
}
/*