ref: da7eb070f7334ad8574fbf742cca509fef212f4b
parent: 15441903978d686a6c1032c550c5fcfeb61c8008
author: Turo Lamminen <turol@iki.fi>
date: Sat Sep 17 12:30:56 EDT 2022
strife: Move R_ExecuteSetViewSize prototype to r_main.h
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -200,7 +200,6 @@
//
gamestate_t wipegamestate = GS_UNKNOWN;
//extern int showMessages; [STRIFE] no such variable
-void R_ExecuteSetViewSize (void);
void D_Display (void)
{
--- a/src/strife/g_game.c
+++ b/src/strife/g_game.c
@@ -1659,7 +1659,6 @@
// G_InitFromSavegame
// Can be called by the startup code or the menu task.
//
-void R_ExecuteSetViewSize (void);
char savename[256];
--- a/src/strife/r_main.h
+++ b/src/strife/r_main.h
@@ -158,4 +158,7 @@
// Called by M_Responder.
void R_SetViewSize (int blocks, int detail);
+void R_ExecuteSetViewSize(void);
+
+
#endif