Guest User

Untitled

a guest
Oct 13th, 2024
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. MEmu := "PCSX2"
  2. MEmuV := "1.7.0"
  3. MURL := ["http://pcsx2.net/"]
  4. MAuthor := ["djvj, Tancrede654"]
  5. MVersion := "2.2.1"
  6. MCRC := ""
  7. iCRC := ""
  8. MID := ""
  9. MSystem := ["Sony PlayStation 2"]
  10. ;----------------------------------------------------------------------------
  11. ; Notes:
  12. ; Quick & dirty module for PCSX2 Nightly, made from 1.6.0 version
  13. ;----------------------------------------------------------------------------
  14. StartModule()
  15. BezelGUI()
  16. FadeInStart()
  17.  
  18. primaryExe := new Emulator(emuPath . "\" . executable)
  19.  
  20. emuWindow := new Window(new WindowTitle("PCSX2","Qt672QWindowIcon"))
  21.  
  22. Fullscreen := moduleIni.Read("Settings", "Fullscreen","false")
  23. NoGUI := moduleIni.Read("Settings", "NoGUI","false")
  24. FastBoot := moduleIni.Read("Settings", "FastBoot","false")
  25.  
  26. Fullscreen := If Fullscreen = "true" ? " -fullscreen" : ""
  27. NoGUI := If NoGUI = "true" ? " -batch -nogui" : ""
  28. FastBoot := If FastBoot = "true" ? " -fastboot" : " -slowboot"
  29.  
  30. primaryExe.Run(" """ . romPath . "\" . romName . romExtension . """" . Fullscreen . FastBoot . NoGUI)
  31. FadeInExit()
  32. primaryExe.Process("WaitClose")
  33.  
  34. 7zCleanUp()
  35. BezelExit()
  36. FadeOutExit()
  37. ExitModule()
  38.  
  39. CloseProcess:
  40. FadeOutStart()
  41. emuWindow.Close()
  42. Return
Advertisement
Add Comment
Please, Sign In to add comment