summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeGC.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-05-27 20:55:36 -0400
committerLioncash <mathew1800@gmail.com>2018-05-27 21:00:54 -0400
commitac474ff1dad4ed4766279bf1c19a68c44846d94f (patch)
tree53060073261a9043f8e6e3a229e22d1fa31470ae /Source/Core/DiscIO/VolumeGC.cpp
parent686e29f2d3f1f6cbd58dd9104820747e2c0d629e (diff)
ColorUtil: Namespace code under the Common namespace
Given this is within Common, it should be in the Common namespace itself.
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeGC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp
index eda59fff08..51f9d0bb23 100644
--- a/Source/Core/DiscIO/VolumeGC.cpp
+++ b/Source/Core/DiscIO/VolumeGC.cpp
@@ -244,8 +244,8 @@ 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);
- ColorUtil::decode5A3image(banner.image_buffer.data(), banner_file.image, GC_BANNER_WIDTH,
- GC_BANNER_HEIGHT);
+ Common::decode5A3image(banner.image_buffer.data(), banner_file.image, GC_BANNER_WIDTH,
+ GC_BANNER_HEIGHT);
for (u32 i = 0; i < number_of_languages; ++i)
{