EpsxE - Playstation
Publié : 07 avr. 2015 - 18:07
Bonjour, je voudrai savoir si il ya des réglages dans Rétroarch pour ajuster au mieux la qualiter le l'image sur Playstation ,car le rendu n'est pas terrible .
Merci
Merci
Le forum francophone dédié à l'émulation et au retrogaming. Aide à la réalisation de bornes d'arcade et de bartops. Téléchargement gratuit de médias
https://forum.hfsplay.fr/
Code : Tout sélectionner
;----------------------------------------------------------------------------
; Sony Playstation
; ePSXe v1.7.0
; by Shateredsoul/Brolly/djvj
; 1.6
;
; Notes:
; epsxe can't deal with bin/cue dumps with more than one audio track if you load the cue file directly.
; For these to work you must mount the cue on daemon tools and let epsxe boot the game from there.
; You need to make sure you have a SCSI virtual drive on Daemon Tools, NOT a DT one.
;
; Extract all your BIOS files to the bios subfolder. Then goto Config->Bios and select the bios you wish to use.
;
; Go to Config->Video then choose a plugin. Pete's OpenGL line is preffered
; Click Configure (under video plugin) and choose fullscreen and set your desired resolution. Video options/results will vary based on the plugin you choose.
;
; If you are using images with multiple tracks, set your extension to cue (make sure all your cues are correctly pointing to their tracks).
; Go to Config->Cdrom->Configure button and select the drive letter associated with your daemon tools virtual drive.
;
; ePSXe will ONLY close via Escape, it will bug out with all other forms of closing a normal program. Do not edit CloseProcess!
;
; TurboButton will only work with DX7 video plugin. Turbo key by Hypnoziz
;
; epsxe stores its settings in the registry @ HKEY_CURRENT_USER\Software\epsxe\config
; plugins store their settings in the registry @ HKEY_CURRENT_USER\Software\Vision Thing\PSEmu Pro
;----------------------------------------------------------------------------
UseDT = true ; Set this to true if you want to use Daemon Tools to launch your CUE files. If false, ePSXe will load your cues directly
UseSCSI = true ; If you prefer SCSI virtual drives, set this to true, otherwise Daemon Tools will use a DT virtual drive.
turboButton = F12 ; Key mapping for turbo button assignment
;----------------------------------------------------------------------------
GUI_ID := FadeInStart()
SetKeyDelay, 50
Hotkey, %turboButton%, TurboProcess
turboEnabled = 0 ; Initialize turbo state
7z1 := 7z(romPath, romName, romExtension, 7zExtractDir)
UseSCSI := (If UseSCSI = "true" ? ("scsi`, ") : ("dt`, "))
; Mount the CD using DaemonTools
If ( romExtension = ".cue" && UseDT = "true" ) {
RunWait, %daemonToolsPath% -mount %UseSCSI%0`, "%romPath%%romName%%romExtension%"
Run, %executable% -nogui, %emuPath%
} Else
Run, %executable% -nogui -loadiso "%romPath%%romName%%romExtension%", %emuPath%
If(ErrorLevel != 0){
MsgBox, 48, Exe Error, Error launching emulator`, closing script., 5
ExitApp
}
WinWait, ePSXe - Enhanced PSX emulator
WinWaitActive, ePSXe - Enhanced PSX emulator
GUI_ID2 := FadeInExit()
Process, WaitClose, %executable%
; Unmount the CD from DaemonTools
If ( romExtension = ".cue" && UseDT = "true" )
RunWait, %daemonToolsPath% -unmount %UseSCSI%0
7z2 := 7zCleanUp()
GUI_ID4 := FadeOutExit()
WinActivate, Hyperspin
ExitApp
TurboProcess:
If (turboEnabled = 0) {
Send, {Delete}{End}{End}{Delete}
turboEnabled = 1
} Else {
Send, {Delete}{End}{Delete}
turboEnabled = 0
}
Return
CloseProcess:
GUI_ID3 := FadeOutStart()
Send {Esc down}{Esc up} ; DO NOT CHANGE
Return