foxygit / doom Log in
commit 7bb12317044d04b539649041eb3ea69350a1320b
Author:     Turo Lamminen <turol@iki.fi>
AuthorDate: Fri Sep 9 15:46:49 2022 +0300
Commit:     Turo Lamminen <turol@iki.fi>
CommitDate: Sat Oct 22 17:18:12 2022 +0300

    heretic: Move R_ExecuteSetViewSize prototype to r_local.h
---
 src/heretic/d_main.c  | 2 --
 src/heretic/r_local.h | 1 +
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/heretic/d_main.c b/src/heretic/d_main.c
index c690ca7b..30e4d746 100644
--- a/src/heretic/d_main.c
+++ b/src/heretic/d_main.c
@@ -139,8 +139,6 @@ void DrawMessage(void)
 //
 //---------------------------------------------------------------------------

-void R_ExecuteSetViewSize(void);
-

 void D_Display(void)
 {
diff --git a/src/heretic/r_local.h b/src/heretic/r_local.h
index 7cccda14..bb99ca4f 100644
--- a/src/heretic/r_local.h
+++ b/src/heretic/r_local.h
@@ -307,6 +307,7 @@ fixed_t R_PointToDist(fixed_t x, fixed_t y);
 fixed_t R_ScaleFromGlobalAngle(angle_t visangle);
 subsector_t *R_PointInSubsector(fixed_t x, fixed_t y);
 void R_AddPointToBox(int x, int y, fixed_t * box);
+void R_ExecuteSetViewSize(void);


 //