mirror of
https://github.com/clockworkpi/launcher.git
synced 2026-03-18 18:02:46 +01:00
ROM_SO bug fix
This commit is contained in:
@@ -342,7 +342,7 @@ class FavListPage(Page):
|
||||
if self._Emulator["ROM_SO"] =="": #empty means No needs for rom so
|
||||
pygame.event.post( pygame.event.Event(RUNEVT, message=cmdpath))
|
||||
else:
|
||||
if FileExists(self._Emulator["ROM_SO"]):
|
||||
if FileExists(self._Emulator["ROM_SO"].split(" ")[0]):
|
||||
pygame.event.post( pygame.event.Event(RUNEVT, message=cmdpath))
|
||||
else:
|
||||
self._Screen.PushPage(self._RomSoConfirmDownloadPage)
|
||||
|
||||
@@ -385,7 +385,7 @@ class RomListPage(Page):
|
||||
if self._Emulator["ROM_SO"] =="": #empty means No needs for rom so
|
||||
pygame.event.post( pygame.event.Event(RUNEVT, message=cmdpath))
|
||||
else:
|
||||
if FileExists(self._Emulator["ROM_SO"]):
|
||||
if FileExists(self._Emulator["ROM_SO"].split(" ")[0]):
|
||||
pygame.event.post( pygame.event.Event(RUNEVT, message=cmdpath))
|
||||
else:
|
||||
self._Screen.PushPage(self._RomSoConfirmDownloadPage)
|
||||
|
||||
Reference in New Issue
Block a user