freezzer / wiiflow

Automatically exported from code.google.com/p/wiiflow
0 stars 0 forks source link

Red box cover for NSMB PAL #120

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Quote from /trunk/source/gui/coverflow.cpp

#

m_items[m_covers[i].index].id == "SMNK01" || m_items[m_covers[i].index].id
== "SMNW01")

 GX_InitTexObj(&texObj, m_dvdSkin_Red.data.get(), m_dvdSkin_Red.width,
m_dvdSkin_Red.height, m_dvdSkin_Red.format, GX_CLAMP, GX_CLAMP, GX_FALSE);

#

NSMB PAL ID is SMBP01 and Red Box not appear. I edit de PAL ID to SMNW01
and works... but we can add suport for PAL ID please.
Thanks.

Original issue reported on code.google.com by Edu.el.b...@gmail.com on 3 Mar 2010 at 4:27

GoogleCodeExporter commented 8 years ago
Hmm the actual version (or since r22) it already checks for PAL and all other 
regions

if (m_items[m_covers[i].index].id == "SMNE01" || m_items[m_covers[i].index].id 
==
"SMNP01" || m_items[m_covers[i].index].id == "SMNJ01" ||    
m_items[m_covers[i].index].id == "SMNK01" || m_items[m_covers[i].index].id == 
"SMNW01")

as you can see the PAL ID should be SMNP01 not SMBP01.

Original comment by thedarkn...@gmail.com on 3 Mar 2010 at 2:31