hi everybody !
i make a bezel for this game (not perfect....)
use my ahk if you don't would push alt+enter to fullscreen :
#SingleInstance Force
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
Run, "run_GLADMORT_1280x996_scanlines.bat" ------------> change name if you would launch another version
Sleep, 2500
#UseHook On
;
OnExit("RestoreTaskbar")
WinGet, TempWindowID, ID, A
if (WindowID != TempWindowID)
{
WindowID := TempWindowID
WindowState := 0
}
if (WindowState != 1)
{
WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
WinSet, Style, -0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
;
WinHide ahk_class Shell_TrayWnd
WinHide Start ahk_class Button
}
else
{
;
WinSet, Style, +0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
;
WinShow ahk_class Shell_TrayWnd
WinShow Start ahk_class Button
}
WindowState := !WindowState
return
; ------------------------------
;
RestoreTaskbar(ExitReason, ExitCode)
{
WinShow ahk_class Shell_TrayWnd
WinShow Start ahk_class Button
}
$Escape::
Send !{f4}
Process, Close, AutoHotkey.exe
Run,taskkill /im "AutoHotkey.exe" /F
Process, Close, mame64.exe
Run,taskkill /im "mame64.exe" /F
ExitApp
return
launcher fullscreen.ahk