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:
parent
1ef3f07498
commit
76d11c6dec
@ -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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user