summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/Src/BannerLoaderWii.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/BannerLoaderWii.cpp b/Source/Core/DiscIO/Src/BannerLoaderWii.cpp
index b669e3dc66..8555b6e3e5 100644
--- a/Source/Core/DiscIO/Src/BannerLoaderWii.cpp
+++ b/Source/Core/DiscIO/Src/BannerLoaderWii.cpp
@@ -88,7 +88,7 @@ CBannerLoaderWii::GetBanner(u32* _pBannerImage)
{
for (int x=0; x<96; x++)
{
- _pBannerImage[y*96+x] = Buffer[(y*2)*96+(x*2)];
+ _pBannerImage[y*96+x] = Buffer[(y*192*2)+(x*2)];
}
}