mirror of
https://github.com/yuzu-emu/yuzu-mainline.git
synced 2024-06-14 18:19:28 +02:00
auto x = 0; auto-deduces x to be an int. This is undesirable when working with unsigned values. It also causes sign conversion warnings. Instead, we can make it a proper unsigned value with the correct width that the following expressions operate on.