Today i have found a very well PSP Emu ... http://www.ppsspp.org
Latest releases work at some Games without Sound/or miss Sounds, but my "Arcade Favorite":
Pacman Championship Edition work 100%, with Sound
This is perfect for all Arcade Freaks and should run on all Arcade Cabinets ... i mean
I see, the Dev Team work hard on the Emu, i think, the Sound Problem will be cleared soon ...
Commandline works too: PPSSPPwindows.exe "folder/game.iso"
F12 Key turn the Emu into Fullscreen, one thing: ESC do not work nicely ... Admin, can you help ?
PSP ? Yes, it works ...
Try this Autoit script
or better (but not tried this one, i have just see the possible modif)
Code: Select all
HotKeySet("{ESC}", "Terminate")
If $CmdLine[0] == 1 Then
$PID = Run ( "PPSSPPWindows.exe" &' "' & $CmdLine[1] & '"' )
While 1
Sleep(500)
WEnd
EndIf
Func Terminate()
While ProcessExists ( $PID )
ProcessClose ( $PID )
WEnd
Exit 0
EndFunc
Code: Select all
HotKeySet("{ESC}", "Terminate")
If $CmdLine[0] == 1 Then
$PID = Run ( "PPSSPPWindows.exe" &' "' & $CmdLine[1] & '"' )
While ProcessExists ( $PID )
Sleep(500)
WEnd
EndIf
Func Terminate()
While ProcessExists ( $PID )
ProcessClose ( $PID )
WEnd
Exit 0
EndFunc
Last edited by Aeliss on Tue May 14, 2013 4:17 pm, edited 1 time in total.
Thank you Aeliss, the first one is ok.
Before use, you must start PPSSPP onetime manual, start a Game, press F12, and quit then with Alt+F4.
After that "config", you can start PPSSPP in Full over mGalaxy !
Try PPSSPP, some Games run fine ...
Before use, you must start PPSSPP onetime manual, start a Game, press F12, and quit then with Alt+F4.
After that "config", you can start PPSSPP in Full over mGalaxy !
Try PPSSPP, some Games run fine ...
Last edited by Stefan on Mon May 20, 2013 9:29 am, edited 1 time in total.
---------------
Greetings from Austria
Greetings from Austria
Take a look here http://www.mgalaxy.com/forum/index.php?topic=495.0.
There is an option too in ppsspp, but generally the focus lost is at start not at close ....
There is an option too in ppsspp, but generally the focus lost is at start not at close ....
No, I haven't problem too, with standard configuration, and without script (scripts to change focus).
There is an option like "always stay on top" to check (or uncheck) in ppsspp that can help for focus (on start, but after close .....)
But all configurations are differents, and the windows problems possibilities are endless ^^.
My better crazy bug : mGalaxy close itself when I use psx emulator, after 3/4 mn, but like I m the only one with this bug, I think it s because my configuration. Don't worry about that, for the moment I use a script that reload mGalaxy if it s closed, not sure the bug is still here.
There is an option like "always stay on top" to check (or uncheck) in ppsspp that can help for focus (on start, but after close .....)
But all configurations are differents, and the windows problems possibilities are endless ^^.
My better crazy bug : mGalaxy close itself when I use psx emulator, after 3/4 mn, but like I m the only one with this bug, I think it s because my configuration. Don't worry about that, for the moment I use a script that reload mGalaxy if it s closed, not sure the bug is still here.
Last edited by Aeliss on Mon Jun 09, 2014 3:28 pm, edited 1 time in total.