mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-29 21:32:52 +00:00
6339a5ea8e
cmd2 is a u32, so any bitwise arithmetic on it with a type of the same size or smaller will result in a u32 value. This is also implicitly converted to an unsigned type in the if statement as well, given that size_t * int -> size_t. This is just more explicit about the operations occurring and also likely silences a sign conversion warning.