Richter64 / usbloader-gui

Automatically exported from code.google.com/p/usbloader-gui
0 stars 0 forks source link

odd game regions(Pal without P) do show region or show previous game's region #166

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install game like hamster heroes ( ID:HU4XUG)
2. open loader go to that game
3.

What is the expected output? What do you see instead?
their will either be no region or the region of the previously selected title.

What version of the product are you using? On what operating system?

Please provide any additional information below.
I reported this before and it was changed to fixed but is still not fixed
in the latest rev(234)

It is a simple fix, change lines 2734-2736:
                    case 'P':
                    sprintf(gameregion,"  PAL ");
                    break;
TO:
                    case 'D':
                    case 'F':
                    case 'P':
                    case 'X':
                    case 'S':
                    case 'Y':
                    sprintf(gameregion,"  PAL ");
                    break;

This will give correct region info for all unusual PAL ids

Original issue reported on code.google.com by shaneste...@gmail.com on 1 May 2009 at 11:06

GoogleCodeExporter commented 9 years ago
even 'I' is PAL (I think it means 'Italy')

Original comment by luca.azz...@gmail.com on 1 May 2009 at 11:20

GoogleCodeExporter commented 9 years ago
then even 'I' should be added:
                    case 'D':
                    case 'F':
                                        case 'I':
                    case 'P':
                    case 'X':
                    case 'S':
                    case 'Y':
                    sprintf(gameregion,"  PAL ");
                    break;

Original comment by shaneste...@gmail.com on 1 May 2009 at 12:22

GoogleCodeExporter commented 9 years ago

Original comment by hung...@gmail.com on 2 May 2009 at 7:01

GoogleCodeExporter commented 9 years ago

Original comment by hung...@gmail.com on 2 May 2009 at 7:06

GoogleCodeExporter commented 9 years ago
you forgot to add "case'I':"

Original comment by dj_sk...@hotmail.com on 2 May 2009 at 7:09