diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-05-27 20:58:08 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-05-27 21:04:48 -0400 |
| commit | a745666a60fadb4e07bc12793b7bf4d505fd03e7 (patch) | |
| tree | b21d6e36c27b21e798a86ab5052d50c12875e344 /Source/Core/DiscIO/VolumeGC.cpp | |
| parent | ac474ff1dad4ed4766279bf1c19a68c44846d94f (diff) | |
ColorUtil: Amend function name casing
Makes the function names conform to our coding style.
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeGC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp index 51f9d0bb23..d48e00ac9d 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -244,7 +244,7 @@ VolumeGC::ConvertedGCBanner VolumeGC::ExtractBannerInformation(const GCBanner& b banner.image_width = GC_BANNER_WIDTH; banner.image_height = GC_BANNER_HEIGHT; banner.image_buffer = std::vector<u32>(GC_BANNER_WIDTH * GC_BANNER_HEIGHT); - Common::decode5A3image(banner.image_buffer.data(), banner_file.image, GC_BANNER_WIDTH, + Common::Decode5A3Image(banner.image_buffer.data(), banner_file.image, GC_BANNER_WIDTH, GC_BANNER_HEIGHT); for (u32 i = 0; i < number_of_languages; ++i) |
