mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
fix a couple of compile issues (comment out the options_menu call and
include QF/keys.h again)
This commit is contained in:
parent
6c1fbd079c
commit
00216df62a
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
#include "QF/keys.h"
|
||||||
|
|
||||||
float () random = #0;
|
float () random = #0;
|
||||||
string () gametype = #0;
|
string () gametype = #0;
|
||||||
|
@ -433,7 +434,7 @@ void () main_menu =
|
||||||
if (do_single_player)
|
if (do_single_player)
|
||||||
single_player_menu ();
|
single_player_menu ();
|
||||||
multi_player_menu ();
|
multi_player_menu ();
|
||||||
options_menu ();
|
//options_menu ();
|
||||||
help_menu ();
|
help_menu ();
|
||||||
Menu_Item (54, 112, "", quit_f);
|
Menu_Item (54, 112, "", quit_f);
|
||||||
Menu_End ();
|
Menu_End ();
|
||||||
|
|
Loading…
Reference in a new issue