Jump to content

Spalsh loading screen frozen on start gameafter adding new system


mruizfue

Recommended Posts

Dear all,

 

After dealing a lot and read tutorials, I tried to install a new system (Magnavox 2). I think I made it right, but I'm stuck on the final process.... when I click on a game, it doesn't work. Loading screen appears and nothing happens.

 

Tried with ahk call to hypersplash function but it didn't work either.

 

This is the hyperlaunch log:

 


09:24:05 |  HyperLaunch v2.24e
09:24:05 |  System Specs:
        HyperSpin Dir: D:\hyperspin1.0
        OS: WIN_7
        OS Language: 0C0A
        OS Admin Status: No
        Monitor #1 (\\.\DISPLAY1): 1707x960 (1707x923 work)
        HyperSpin Res: 1707x960
        AHK Version: 1.1.07.03
09:24:05 |  HyperLaunch received "Magnavox Odyssey 2" and "4 in 1 Row (Europe)"
09:24:05 |  INI Keys read
09:24:05 |  Checking paths
09:24:05 |  Finished injecting functions into module
09:24:05 |  Module is built
09:24:05 |  Running module:

;-----------------------------------------------------------
;Built in script
;-----------------------------------------------------------
#NoTrayIcon
DetectHiddenWindows, ON
SetTitleMatchMode, 2
SendMode, Event
0 = 2
exitEmulatorKey = ~Esc
emuPath = D:\hyperspin1.0\emulators\Magnavox Odyssey 2\
romPath = D:\hyperspin1.0\emulators\Magnavox Odyssey 2\Roms\
romExtension = .zip
romExtensions = zip,7zip
executable = o2em.exe
systemName = Magnavox Odyssey 2
romName = 4 in 1 Row (Europe)
daemonToolsPath = C:\Program Files\DAEMON Tools Lite\daemon.exe
skipchecks = false
fadeIn =
fadeOut =
fadeColor =
fadeInDuration =
fadeOutDuration =
fadeInDelay =
fadeInInterruptKeys = {LControl}{RControl}{LAlt}{RAlt}{LShift}{RShift}{LWin}{RWin}{AppsKey}{F1}{F2}{F3}{F4}{F5}{F6}{F7}{F8}{F9}{F10}{F11}{F12}{Left}{Right}{Up}{Down}{Home}{End}{PgUp}{PgDn}{Del}{Ins}{BS}{Capslock}{Numlock}{PrintScreen}{Pause}
gameStartImgPath = D:\hyperspin1.0\Media\Magnavox Odyssey 2\Images\GameStart\
7zEnable = false
7zExtractDir = C:\WINDOWS\TEMP\Hyperspin\
7zDelTemp = true
7zFormats = .zip,.rar,.7z,.gzip,.tar
7zFormatsNoP = zip,rar,7z,gzip,tar
Hotkey, ~Esc, CloseProcess
;-----------------------------------------------------------
;Module script
;-----------------------------------------------------------
;----------------------------------------------------------------------------
; Magnavox Odyssey 2
; MESS v0.143
; by djvj
; 1.3
;
; Notes:
; This module assumes you have odyssey2 bios in your MESS roms directory, which might be different than your actual roms directory.
; Exit fade will only work correctly if you don't have Esc, the default MESS exit key,  as your exit key. If you use Esc, turn off the ExitScreen
; MESS does not close normally with ESC while in this emu.
;----------------------------------------------------------------------------

;Run, "D:\Hyperspin1.0\Pantallas de Espera\Magnavox Odyssey 2\hypersplash.exe"
;sleep 2500
GUI_ID := FadeInStart()

7z1 := 7z(romPath, romName, romExtension, 7zExtractDir)

Run, %executable% odyssey2 -cart "%romPath%%romName%%romExtension%" -skip_gameinfo -nowindow, %emuPath%, Hide

WinWait, MESS
WinWaitActive, MESS

GUI_ID2 := FadeInExit()

Process, WaitClose, %executable%
;sleep 2500

7z2 := 7zCleanUp()

GUI_ID4 := FadeOutExit()

WinActivate, Hyperspin

;Process, Close, hypersplash.exe
ExitApp


CloseProcess:
    GUI_ID3 := FadeOutStart()
    WinClose, MESS
Return

hideDesktop(){
}

FadeInStart(){
}

FadeInExit(){
}

FadeOutStart(){
Suspend, On
}

FadeOutExit(){
}

7z(path, name, ext, extractPath){
}

7zCleanUp() {
}

CheckFile(file,msg="",timeout=6){
IfNotExist, %file%
{
If msg
ScriptError(msg, timeout)
Else
ScriptError("Cannot find " . file, timeout)
}
Return %file%
}

ScriptError(error,timeout=6){
MsgBox,48,Error,%error%,%timeout%
ExitApp
}
 

 

I would appreciate your help.

 

Regards

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...