I read through the initial LDv3 thread that Gltcpimp made some time ago, and a couple people wanted to have the ability to load pre-set jokers for their games. If you didn't know, a big cause for freezing with the debugger is the joker scanner. In my mod I did a very stupid method to fix this. As effective as it was, it potentially lost compatibility with some games.
So the obvious choice is to allow people to input (through a text file) their own joker address and rid that freezing problem. I am already done with loading a joker from a text file. But the process may be slow if someone has a large amount of jokers within that text file. So a much faster (and easier) method would be to have an array like so:
Anyway I don't have many games; so I was wondering if I could either get a copy of the entire PS2 code database on this site, or if people wouldn't mind replying a list of jokers. If you do reply with some jokers please put it in this format: GAME (Preferably the elf, but it can be the name. If it is the name include the region.) JOKER.
P.S. If you have a large list, please put it inside CODE tags. Thanks!
So the obvious choice is to allow people to input (through a text file) their own joker address and rid that freezing problem. I am already done with loading a joker from a text file. But the process may be slow if someone has a large amount of jokers within that text file. So a much faster (and easier) method would be to have an array like so:
Code:
char *jokers[2][2] = {
{ "SCUS_974.65", "001EE682" },
{ "SLUS_211.94", "0084305C" }
};
P.S. If you have a large list, please put it inside CODE tags. Thanks!
Comment