mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
ColorUtil: Amend function name casing
Makes the function names conform to our coding style.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user