ColorUtil: Amend function name casing

Makes the function names conform to our coding style.
This commit is contained in:
Lioncash
2018-05-27 20:58:08 -04:00
parent ac474ff1da
commit a745666a60
5 changed files with 14 additions and 14 deletions

View File

@ -69,7 +69,7 @@ std::vector<u32> WiiSaveBanner::GetBanner(u32* width, u32* height) const
return std::vector<u32>();
std::vector<u32> image_buffer(BANNER_WIDTH * BANNER_HEIGHT);
Common::decode5A3image(image_buffer.data(), banner_data.data(), BANNER_WIDTH, BANNER_HEIGHT);
Common::Decode5A3Image(image_buffer.data(), banner_data.data(), BANNER_WIDTH, BANNER_HEIGHT);
*width = BANNER_WIDTH;
*height = BANNER_HEIGHT;