Add -fdarkplaces-string-table-bug to the default flags

This commit is contained in:
Wolfgang Bumiller 2013-02-03 19:01:27 +01:00
parent 3c8ce7c866
commit 95dd0fcd9f

1
opts.c
View file

@ -67,6 +67,7 @@ static void opts_setdefault() {
opts_set(opts.flags, CORRECT_TERNARY, true); opts_set(opts.flags, CORRECT_TERNARY, true);
opts_set(opts.flags, BAIL_ON_WERROR, true); opts_set(opts.flags, BAIL_ON_WERROR, true);
opts_set(opts.flags, LEGACY_VECTOR_MATHS, true); opts_set(opts.flags, LEGACY_VECTOR_MATHS, true);
opts_set(opts.flags, DARKPLACES_STRING_TABLE_BUG, true);
} }
void opts_backup_non_Wall() { void opts_backup_non_Wall() {