summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorfires.gc <fires.gc@gmail.com>2008-11-05 21:05:04 +0000
committerfires.gc <fires.gc@gmail.com>2008-11-05 21:05:04 +0000
commite19f01c33bf0251cd3f87f4d9a4eea1180266f50 (patch)
tree6c28407500494d50acc603e6fd4589b181165ab6 /Source/Core/DiscIO
parentbcb0fa617804ea1bda48de1a22ef92e878f1a258 (diff)
another wii banner fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1078 8ced0084-cf51-0410-be5f-012b33b47a6e
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)];
}
}