;-------------------------------------------------------------------------
; SNK Neo Geo CD
; NeoRaine v1.2.11
; by Brolly & djvj
; 1.2
;
; Notes:
; To use fullscreen, set the variable below to true
;-------------------------------------------------------------------------
Fullscreen = true
;-------------------------------------------------------------------------
neoINI := CheckFile(emuPath . "config\raine32_sdl.cfg")
IniRead, currentFullScreen, %neoINI%, Display, fullscreen
FadeInStart()
; Setting Fullscreen setting in ini if it doesn't match what user wants above
If ( Fullscreen != "true" And currentFullScreen = 1 )
IniWrite, 0, %neoINI%, Display, fullscreen
Else If ( Fullscreen = "true" And currentFullScreen = 0 )
IniWrite, 1, %neoINI%, Display, fullscreen
7z(romPath, romName, romExtension, 7zExtractDir)
Run, %executable% -nogui "%romPath%%romName%%romExtension%", %emuPath%, Hide
WinWait, NeoRaine ahk_class SDL_app
WinWaitActive, NeoRaine ahk_class SDL_app
FadeInExit()
Process, WaitClose, %executable%
7zCleanUp()
FadeOutExit()
WinActivate, Hyperspin
ExitApp
CloseProcess:
FadeOutStart()
WinClose, NeoRaine ahk_class SDL_app
Return