Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
Did you try LLE plugins like rsp-z64 and video-z64?
Original comment by s...@narfation.org
on 16 Jan 2013 at 8:20
I forgot that some relevant changes had been made since the last release.
Problem 1 is no longer present as of latest hg (no RSP warning, and audio works
fine). However, there is a new, worse bug: the game freezes at the title
screen, with:
RSP Warning: unknown OSTask: sum 2c85a PC:0
Original comment by anth...@cathet.us
on 16 Jan 2013 at 8:21
With the Z64 plugins (latest hg):
Problem 2 still exists; black title screen except for text. Doesn't freeze.
Console spam:
Video Warning: unsuported format YUV size 2
Problem 3 disappears, as expected.
Original comment by anth...@cathet.us
on 16 Jan 2013 at 8:51
Problems 2 in HLE plugin comes indeed from unimplemented jpeg ucode.
Fixing this properly requires to reverse engineer said ucode.
If you can't wait for the reverse engineering to happen (can take some times),
you can still avoid the freeze by adding this case to the switch statement in
the DoJPEGTask function in main.c
case 0x2c85a: // Pokemon Stadium (J)
// FIXME: reverse engineer this jpeg decoding ucode
taskdone();
return 1;
This way, even if you'll get some corrupted textures, you'll still be able to
play.
Original comment by bobby.sm...@gmail.com
on 16 Jan 2013 at 5:20
I made some patches to the hle plugin to improve partially the situation.
First patch refactor the jpeg module (indeed the new ucode share many
functionalities with other versions). Second patch implement the new ucode.
Notes:
-It seems that glide64 (the old one, I didn't test with the the new mk2
version) doesn't support the output format, so you won't see the pretty pokemon
picture.
-It does sort of work with rice, but the image appeared too dark so I tweaked
experimentally some Y value (there is a comment in the code not to forget about
it).
-The patch has been sent to richard few days ago, but he might have issed it
that's why I posted here.
Feel free to improve upon it.
Original comment by bobby.sm...@gmail.com
on 7 Feb 2013 at 6:17
Attachments:
Patches are now applied
Original comment by s...@narfation.org
on 8 Feb 2013 at 8:31
Original issue reported on code.google.com by
anth...@cathet.us
on 16 Jan 2013 at 7:09