mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
bloody hell
This commit is contained in:
parent
839c00b97b
commit
9609fe8ca4
1 changed files with 2 additions and 3 deletions
|
@ -594,9 +594,8 @@ opt_initializer
|
|||
var_initializer
|
||||
: '=' expr // don't bother folding twice
|
||||
{
|
||||
if (current_scope->type == sc_params) {
|
||||
notice (0, "whee");
|
||||
} else if (current_scope->type == sc_local) {
|
||||
if (current_scope->type == sc_local
|
||||
|| current_scope->type == sc_params) {
|
||||
expr_t *expr = assign_expr (new_def_expr ($<def>0), $2);
|
||||
expr = fold_constants (expr);
|
||||
append_expr (local_expr, expr);
|
||||
|
|
Loading…
Reference in a new issue