add [f] to good name in lines with goodtool codes, and updates rom information window for M-type carts. (#2275)

* add [f] to good name in lines with goodtool codes.

* added M type media to Rom Information.

so it doesn't show (Unknown)
This commit is contained in:
Squall Leonhart 2022-08-15 21:55:14 +10:00 committed by GitHub
parent 3e198d04a8
commit cc2aa4783a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1808,7 +1808,7 @@ Plugin Note=Use GlideN64
RDRAM Size=4
[AE6B1E11-B7CBD69E-C:50]
Good Name=Dragon Sword (U) (Media Header Patch)
Good Name=Dragon Sword (U) (Unreleased Alpha) [F](Media Header Patch)
Internal Name=DragonStorm
Status=Needs video plugin
Plugin Note=Use GlideN64

View File

@ -107,6 +107,7 @@ DWORD CALLBACK RomInfoProc(HWND hDlg, DWORD uMsg, DWORD wParam, DWORD lParam)
switch (RomHeader[0x38])
{
case 'C': SetDlgItemText(hDlg, IDC_INFO_MEDIA, L"N64 Cartridge (Disk Compatible)"); break;
case 'M': SetDlgItemText(hDlg, IDC_INFO_MEDIA, L"N64 Development Cartridge"); break;
case 'N': SetDlgItemText(hDlg, IDC_INFO_MEDIA, L"N64 Cartridge"); break;
case 'Z': SetDlgItemText(hDlg, IDC_INFO_MEDIA, L"Aleck64"); break;
case 0: SetDlgItemText(hDlg, IDC_INFO_MEDIA, L"None"); break;