add int_val field to cvar_t. this should be used instead of value for
boolean / integral values (no conversions done yet).
in_*.c:
Add IN_HandlePause
vid_*.c:
Add VID_HandlePause
context_x11.h vid_glx.c vid_x11.c context_x11.c:
move some common code out of vid_*.c into context_x11.c. Also, disable
the screen saver while nuq is running. NOTE: while vid_glx.c compiles,
it has not been tested yes as glx crashes this machine :(
print config info for sound type
source/quakefs.c:
fix fs_userpath handling for other game types and add support for
abyss
source/qargs.c:
add -abyss checking
include/qdefs.h:
add abyss support
Rudimentary support for the abyss mission pack has been added. Currently this
involves just the addition of -abyss to the supported command line options
(acts just like -rogue and -hipnotic) and adding abyss to the list of game
directories. Any other support that's needed (as with other rogue and hipnotic
modifications) has not been added as it is not known what's needed.
"accidently" port over newtree's svga stuff (I copied the wrong file
then cleaned up the resulting mess:)
Makefile.am include/Makefile.am doc/Makefile.am source/Makefile.am:
fix things up so doc no longer causes make to barf and makd dist works
source/dirent.c source/fnmatch.c source/in_svgalib.c source/vid_3dfxsvga.c
source/vid_mgl.c source/vid_wgl.c:
needed for make dist. No, nuq-3dfx does not get created (I don't have
the libs or card)
include/.gitignore:
ignore stamp-h
include/stamp-h:
shouldn't be in cvs
source/Makefile.am:
comment out the `if ASM_ARCH' and corresponding endif as there seems
to be either a bug or a misunderstanding in automake snd_mixa.o is
now built
convert #if USE_INTEL_ASM to #ifdef USE_INTEL_ASM
add cl_math.S to math_ASM
unfortunatly, snd_mixa.o isn't being built. Haven't figured that one out yet
add alsa support (swiped from newtree:)
+= doesn't seem to work well in automake (or at least not my version). Change
the common_SOURCES += ... to combined_SOURCES = $(common_SOURCES) ... and
change the /following/ instances common_SOURCES to combined_SOURCES.