PSP ? Yes, it works ...

Get answers to questions about using mGalaxy.
Post Reply
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

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  8)

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 ?  ;)
Last edited by Stefan on Tue May 14, 2013 3:15 pm, edited 1 time in total.
---------------
Greetings from Austria
Aeliss
Hero Member
Hero Member
Posts: 900
Joined: Thu Apr 04, 2013 5:55 pm

Try this Autoit script

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
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 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.
User avatar
Stefan
Full Member
Full Member
Posts: 143
Joined: Wed Feb 20, 2013 8:47 am
Location: Wels - AUSTRIA

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 ...  :D
Last edited by Stefan on Mon May 20, 2013 9:29 am, edited 1 time in total.
---------------
Greetings from Austria
davhuit
Full Member
Full Member
Posts: 173
Joined: Mon Aug 12, 2013 3:06 am

Mgalaxy lose focus once you close the emulator.

If there a way to avoid that?
Aeliss
Hero Member
Hero Member
Posts: 900
Joined: Thu Apr 04, 2013 5:55 pm

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 ....
davhuit
Full Member
Full Member
Posts: 173
Joined: Mon Aug 12, 2013 3:06 am

Thanks, I'll try.

(Each time I close a game/the emulator, the controller don't respond aynmore and I have to do an alt-tab to get the focus back)
Last edited by davhuit on Mon Jun 09, 2014 12:07 pm, edited 1 time in total.
User avatar
mgalaxy
Administrator
Administrator
Posts: 1192
Joined: Tue Dec 05, 2006 7:46 pm

Strange..I personaly don't get focus problem with ppsspp!!
Aeliss, do you?..and what's the option you're talking about in ppsspp?
Aeliss
Hero Member
Hero Member
Posts: 900
Joined: Thu Apr 04, 2013 5:55 pm

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.
Last edited by Aeliss on Mon Jun 09, 2014 3:28 pm, edited 1 time in total.
Post Reply