1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Fix typo in AMBuildScript causing warnings in debug configuration leaving some options ignored.

This commit is contained in:
Nicholas Hastings 2014-06-02 18:13:18 -04:00
parent 1ef3f07498
commit 76d11c6dec

View File

@ -190,7 +190,7 @@ class MMSConfig(object):
if cxx.behavior == 'gcc':
cfg.cflags += ['-g3']
elif cxx.behavior == 'msvc':
cfg.cflags += ['/Od, /RTC1']
cfg.cflags += ['/Od', '/RTC1']
# This needs to be after our optimization flags which could otherwise disable it.
if cxx.name == 'msvc':