mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@609 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
86d4bace1d
commit
9e834f8e7f
3 changed files with 7 additions and 7 deletions
|
@ -31,12 +31,12 @@ TARGETOPTS=/DNOASM
|
|||
|
||||
!ifdef DEBUG
|
||||
# debugging options
|
||||
flags_cl=/Ot /Zi
|
||||
flags_cl=/Ot /Zi /MTd
|
||||
flags_link=/DEBUG
|
||||
!else
|
||||
# release options
|
||||
#flags_cl=/Ox
|
||||
flags_cl= /O2 /Ox
|
||||
flags_cl= /O2 /Ox /MT
|
||||
flags_link=/RELEASE
|
||||
!endif
|
||||
|
||||
|
@ -44,7 +44,7 @@ CC=cl
|
|||
AS=ml
|
||||
RC=rc
|
||||
LINK=link /opt:nowin98 /opt:ref /nologo
|
||||
CFLAGS=$(CFLAGS) /nologo /MD /J $(flags_cl) $(TARGETOPTS) /I$(INC) /I$(DXROOT)\include /I$(MSSDKROOT)\include" /I$(PLATFORMSDK)\include"
|
||||
CFLAGS=$(CFLAGS) /nologo /J $(flags_cl) $(TARGETOPTS) /I$(INC) /I$(DXROOT)\include /I$(MSSDKROOT)\include" /I$(PLATFORMSDK)\include"
|
||||
ASFLAGS=/nologo /coff
|
||||
EXESUFFIX=.exe
|
||||
|
||||
|
|
|
@ -14,11 +14,11 @@ EDITORLIB=build.lib
|
|||
|
||||
!ifdef DEBUG
|
||||
# debugging options
|
||||
flags_cl= /Ot /Zi
|
||||
flags_cl= /Ot /Zi /MTd
|
||||
flags_link=/DEBUG
|
||||
!else
|
||||
# release options
|
||||
flags_cl=/O2 /Ox #/Ob1gity
|
||||
flags_cl=/O2 /Ox /MT #/Ob1gity
|
||||
flags_link=/RELEASE
|
||||
!endif
|
||||
|
||||
|
@ -33,7 +33,7 @@ CC=cl
|
|||
AS=ml
|
||||
LINK=link /opt:nowin98 /nologo /opt:ref
|
||||
MT=mt
|
||||
CFLAGS= /MD /J /nologo $(flags_cl) \
|
||||
CFLAGS= /J /nologo $(flags_cl) \
|
||||
/I$(INC) /I$(EINC)\ /I$(SRC)\jmact /I$(SRC)\jaudiolib /I$(MSSDKROOT)\include" /I$(PLATFORMSDK)\include" \
|
||||
/DNOCOPYPROTECT /D "_CRT_SECURE_NO_DEPRECATE" -W0 $(ENGINEOPTS) \
|
||||
/I$(DXROOT)\include /DRENDERTYPEWIN=1
|
||||
|
|
|
@ -511,7 +511,7 @@ int loadplayer(int spot)
|
|||
|
||||
return(0);
|
||||
corrupt:
|
||||
Bsprintf(tempbuf,"Save game file \"%s\" is corrupt.",fnptr);
|
||||
Bsprintf(tempbuf,"Save game file \"%s\" is corrupt or of the wrong version.",fnptr);
|
||||
gameexit(tempbuf);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue