change Progetto Emma to Arcade Database since Progetto Emma is MIA

This commit is contained in:
dinkc64 2021-03-09 14:36:44 -05:00
parent c375d2fbf8
commit 76bb4fe5a5
2 changed files with 2 additions and 2 deletions

View File

@ -1487,7 +1487,7 @@ BEGIN
MENUITEM SEPARATOR
MENUITEM "View Game Information", GAMESEL_MENU_GAMEINFO
MENUITEM SEPARATOR
MENUITEM "View in Progetto EMMA", GAMESEL_MENU_VIEWEMMA
MENUITEM "View in Arcade Database", GAMESEL_MENU_VIEWEMMA
MENUITEM SEPARATOR
MENUITEM "Favorite", GAMESEL_MENU_FAVORITE
END

View File

@ -1166,7 +1166,7 @@ static void ViewEmma()
unsigned ThreadID = 0;
TCHAR szShellExURL[MAX_PATH];
_stprintf(szShellExURL, _T("http://www.progettoemma.net/gioco.php?&game=%s"), BurnDrvGetText(DRV_NAME));
_stprintf(szShellExURL, _T("http://adb.arcadeitalia.net/dettaglio_mame.php?game_name=%s"), BurnDrvGetText(DRV_NAME));
hThread = (HANDLE)_beginthreadex(NULL, 0, DoShellExThread, (void*)szShellExURL, 0, &ThreadID);
Sleep(150); // allow arguments to pass to ShellExecute() in new thread before they get disposed.