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:
parent
3e198d04a8
commit
cc2aa4783a
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue