Scarface: The World is Yours SLUS_211.11; not found
#11
BTW the game runs pretty smooth. There are a few graphical glitches here and there like when Tony Montana goes into the rage mode but it's still worth checking out.
Reply

Sponsored links

#12
Ok. I took a few minutes and tracked down the actual problem in the code. The issue is in CDVD.cpp. Some PSX2 games don't use a suffix after the the ";" in the BOOT2 line in SYSTEM.CNF. This causes a path error when the loadelf() function is called. I have made a very simple fix using elfpath.AfterLast(';'). If the elfpath doesn't have anything after the ";" I just tack a one onto the end of the elfpath. This fix should be 100% safe for the time being and could potentially fix many games. You will need to paste the following code into CDVD.cpp at line 341.

fname = elfpath.AfterLast(';');
if (!fname)
{
Console.WriteLn(L"Using path fix by Kickstand (" + elfpath + L")");
elfpath = elfpath + L"1";
}
Reply




Users browsing this thread: 1 Guest(s)