2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

vk_shader_decompiler: Silence warning when compiling without asserts

This commit is contained in:
ReinUsesLisp 2020-12-24 21:01:09 -03:00
parent 5836530a87
commit 5dbda22659

View file

@ -2094,6 +2094,7 @@ private:
return OpFOrdGreaterThanEqual(t_bool, operand_1, operand_2); return OpFOrdGreaterThanEqual(t_bool, operand_1, operand_2);
default: default:
UNREACHABLE(); UNREACHABLE();
return v_true;
} }
} }