PDA

View Full Version : vectrex and paraJVE emulator



betjenten
03-22-2011, 01:43 AM
Im trying to make vectrex work in HS with Parajve emulator. I have tried with MESS emulator, but I keep getting the system.img not found. And I can't find any info on that file. SO I'm trying with paraJVE.

ParaJVE works fine outside HS with the command:

ParaJVE_console.exe -game=c:\Roms\GCE_Vectrex\a.zip

in Hyperlaunch I have this:

;**********************************GCE Vectrex***********************************
else if (executable = "ParaJVE_console.exe")
{
hideDesktop()
Hotkey, %exitEmulatorKey%, CloseProcess
RunWait, %executable% -game= "%romPath%%romName%%romExtension%"
}

and my .ini file is:


[exe info]
path=C:\Emulators\GCE Vectrex\ParaJVE\
rompath=C:\Roms\GCE_Vectrex\
userompath = false
exe=ParaJVE_console.exe
romextension=zip
parameters =
searchsubfolders = false
pcgame = false
winstate = HIDDEN
hyperlaunch = true


but I keep getting this error:

http://www.flaskeposten.dk/div/gce_error.png


What do I do wrong?

420colin420
03-22-2011, 05:33 AM
I had the same problem with mess, but got it working. I am currently at work and dont remember the exact fix i made. but i do beleive it was this site that guided me through it.... http://www.atariage.com/7800/emulation/mess_tutorial/
Also i can tell you that underscores can cause some problems in ahk scripting so the fact your emulator name is GCE_Vectrex isnt helping with the error your having. dont know if removing the underscores from your filename and ahk script will fix your problem but it sure is an easy thing to try. hope this is of some help.

betjenten
03-22-2011, 08:40 AM
I made it work by looking at the guide. Just needed to point to the right path to the bios in MESS. Thx for the help.