Probably doesnt work because theirs no trailing "\" in you Rom Path. I dont understand how its loading games at all without it. Here's the code i'm using directly from the source
the EmulatorPath array is expecting the trailing "\", but since for whatever reason you cant use a trailing slash its not finding the art file. I could add a check for the trailing slash to that line, but the real question is how the heck does it find games without it. Can you show me a few lines from the files where your roms are stored. Look in the plugin data folder for <emulatorname>.txt.Code:Do temp = RomReader.ReadLine LineSplit = Split(temp, ";") namesplit = Split(LineSplit(1), ".") RRSDK.Execute("CLADD;" & LineSplit(0) & ";" & LineSplit(1)) If File.Exists(EmulatorRomPath(SelectedEmulator - 1) & namesplit(0) & ".jpg") Then RRSDK.Execute("CLSETIMG;" & p & ";" & EmulatorRomPath(SelectedEmulator - 1) & namesplit(0) & ".jpg") Else RRSDK.Execute("CLSETIMG;" & p & ";" & DPath & "nogameart.jpg") End If p = p + 1 Loop Until RomReader.Peek = -1



LinkBack URL
About LinkBacks
Reply With Quote



Bookmarks