mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-shader: Replace BOOL with bool.
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
aa52cb10b4
commit
c2c092b143
@@ -174,7 +174,7 @@ row_major {return KW_ROW_MAJOR; }
|
||||
hlsl_lval.name = vkd3d_strdup(yytext);
|
||||
if (hlsl_get_var(hlsl_ctx.cur_scope, yytext) || hlsl_get_function(yytext))
|
||||
return VAR_IDENTIFIER;
|
||||
else if (hlsl_get_type(hlsl_ctx.cur_scope, yytext, TRUE))
|
||||
else if (hlsl_get_type(hlsl_ctx.cur_scope, yytext, true))
|
||||
return TYPE_IDENTIFIER;
|
||||
else
|
||||
return NEW_IDENTIFIER;
|
||||
|
||||
Reference in New Issue
Block a user