mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
wonder how I forgot the -Werror...
This commit is contained in:
parent
33513ce67b
commit
c4a8f35a6f
2 changed files with 2 additions and 3 deletions
|
@ -6,7 +6,7 @@ AUTOMAKE_OPTIONS= foreign
|
|||
pkgdatadir=@sharepath@/id1
|
||||
|
||||
QFCC=$(top_builddir)/tools/qfcc/source/qfcc
|
||||
QCFLAGS=-g
|
||||
QCFLAGS=-g -Werror
|
||||
QCPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include
|
||||
|
||||
pkgdata_DATA= menu.dat
|
||||
|
|
|
@ -259,7 +259,7 @@ void () options_controls_menu =
|
|||
integer () options_features_draw =
|
||||
{
|
||||
local string tmp;
|
||||
local integer cursor_pad = 0, spacing = 120, bar_pad;
|
||||
local integer cursor_pad = 0, spacing = 120;
|
||||
|
||||
|
||||
Draw_Pic (16, 4, "gfx/qplaque.lmp");
|
||||
|
@ -296,7 +296,6 @@ integer (integer key, integer unicode, integer down) options_keyevent =
|
|||
|
||||
void () options_menu =
|
||||
{
|
||||
local string tmp;
|
||||
local integer spacing = 120;
|
||||
|
||||
Menu_Begin (54, 72, "");
|
||||
|
|
Loading…
Reference in a new issue