diff options
| author | fires.gc <fires.gc@gmail.com> | 2008-11-05 21:05:04 +0000 |
|---|---|---|
| committer | fires.gc <fires.gc@gmail.com> | 2008-11-05 21:05:04 +0000 |
| commit | e19f01c33bf0251cd3f87f4d9a4eea1180266f50 (patch) | |
| tree | 6c28407500494d50acc603e6fd4589b181165ab6 /Source | |
| parent | bcb0fa617804ea1bda48de1a22ef92e878f1a258 (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')
| -rw-r--r-- | Source/Core/DiscIO/Src/BannerLoaderWii.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/DolphinWX/Src/ISOFile.cpp | 2 |
2 files changed, 2 insertions, 2 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)];
}
}
diff --git a/Source/Core/DolphinWX/Src/ISOFile.cpp b/Source/Core/DolphinWX/Src/ISOFile.cpp index d1d2c0ec3b..f44418c0f4 100644 --- a/Source/Core/DolphinWX/Src/ISOFile.cpp +++ b/Source/Core/DolphinWX/Src/ISOFile.cpp @@ -32,7 +32,7 @@ #include "ChunkFile.h"
#include "../resources/no_banner.cpp"
-#define CACHE_REVISION 0x104
+#define CACHE_REVISION 0x105
#define DVD_BANNER_WIDTH 96
#define DVD_BANNER_HEIGHT 32
|
