Commit fa9e0f9c authored by Lioncash's avatar Lioncash
Browse files

fsmitm_romfsbuild: Make auto variable into a std::size_t variable within Build()

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.
parent f646ca87
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment