EmuNewz Network
Fix Uta no Prince-Sama - All Star - Printable Version

+- EmuNewz Network (https://www.emunewz.net/forum)
+-- Forum: PSP Emulation (https://www.emunewz.net/forum/forumdisplay.php?fid=191)
+--- Forum: JPCSP Official Forum (https://www.emunewz.net/forum/forumdisplay.php?fid=51)
+---- Forum: svn trunk discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=56)
+---- Thread: Fix Uta no Prince-Sama - All Star (/showthread.php?tid=148213)



Fix Uta no Prince-Sama - All Star - shenweip - 06-13-2013

This game's compressed texture was broken.
I change svn/trunk/src/jpcsp/graphics/VideoEngine.java line:6778 to
Code:
return getCompressedTextureSize((context.texture_width[level] > context.texture_buffer_width[level] ? context.texture_width[level] : context.texture_buffer_width[level]), context.texture_height[level], compressionRatio);
It can fix this issue.

The following pictures are video settings\abnormal\normal

This issue is produced by r3206.
I think maybe there are another games having this issue.


RE: Fix Uta no Prince-Sama - All Star - gid15 - 06-14-2013

(06-13-2013, 12:15 AM)shenweip Wrote: This game's compressed texture was broken.
I change svn/trunk/src/jpcsp/graphics/VideoEngine.java line:6778 to
Code:
return getCompressedTextureSize((context.texture_width[level] > context.texture_buffer_width[level] ? context.texture_width[level] : context.texture_buffer_width[level]), context.texture_height[level], compressionRatio);
It can fix this issue.

The following pictures are video settings\abnormal\normal

This issue is produced by r3206.
I think maybe there are another games having this issue.
You are right!
Should now be fixed in r3236.
Thank you for identifying the bug! Smile