Beta Advanced Emulator Launcher - Multi-emulator frontend for Kodi
(2020-01-27, 12:23)myghalloween Wrote:
(2020-01-27, 08:10)Wintermute0110 Wrote:
(2020-01-27, 00:36)myghalloween Wrote: Hi @Wintermute0110
did you find something in my log?       

AEL seems to be running Demul correctly. However, 6 seconds after execution Demul closes with return code 0 (return code 0 means no error). You are using remote paths to call Demul
Code:
\\STORM\\programs\\Apps\\SEGA Dreamcast\\4 Wheel Thunder\\4 Wheel Thunder v1.002 (E)[!].chd

Have you tried placing you CHDs in a local directory? I think the problem is that Demul cannot access files in remote filesystems:       
@Wintermute0110 
I haven't tried in a local directory, but Demul works with remote files because, waiting for a solution, I actually "link" AEL Demul launcher with a commandline.exe (with autoit) integrating arguments and work all fine.
My code below :

;~ Variables
$appPath = "C:\Emulators\DEMUL\"
$appCommand = "demul.exe"
$appArguments = "-run=dc -image="
;~ Variables end

HotKeySet("{ESC}", "Terminate")
RunWait($appPath & $appCommand & ' ' & $appArguments & '"' & $CmdLine[1] & '"')

Func Terminate ()
    ProcessClose ( $appCommand )
EndFunc

OK. I have rechecked the log and I think I've found the problem:

Code:
arguments = " -run=dc -image="\\STORM\programs\Apps\SEGA Dreamcast\4 Wheel Thunder\4 Wheel Thunder v1.002 (E)[!].chd""
arg_list  = ['-run=dc', '-image=\\STORM\\programs\\Apps\\SEGA Dreamcast\\4 Wheel Thunder\\4 Wheel Thunder v1.002 (E)[!].chd']

arg_list must be:

Code:
arg_list  = ['-run=dc', '-image=\\\\STORM\\programs\\Apps\\SEGA Dreamcast\\4 Wheel Thunder\\4 Wheel Thunder v1.002 (E)[!].chd']

Also, it doesn't hurt but the space at the beginning of the arguments but it is not needed. Let me think about how to solve this issue. I will notify when a patch is ready.
Reply


Messages In This Thread
RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - by Wintermute0110 - 2020-01-27, 12:30
Can You create A Sub Category? - by Wild_Tom - 2020-07-13, 04:43
Crash & Lost my launchers? - by eirrocmh - 2020-11-29, 02:25
RE: Crash & Lost my launchers? - by eirrocmh - 2020-12-19, 00:19
Logout Mark Read Team Forum Stats Members Help
Advanced Emulator Launcher - Multi-emulator frontend for Kodi12