mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 10:48:18 +08:00
workaround for NU8 installer
This commit is contained in:
@@ -397,6 +397,12 @@ static bool DOS_MultiplexFunctions(void) {
|
|||||||
return true;
|
return true;
|
||||||
case 0x1700:
|
case 0x1700:
|
||||||
if(control->SecureMode()||!clipboard_dosapi) return false;
|
if(control->SecureMode()||!clipboard_dosapi) return false;
|
||||||
|
{// Norton Utilities 8.0 installer checks this before continue
|
||||||
|
char psp_name[9];
|
||||||
|
DOS_MCB psp_mcb(dos.psp()-1);
|
||||||
|
psp_mcb.GetFileName(psp_name);
|
||||||
|
if (!strcmp(psp_name, "INSTALL")) return false;
|
||||||
|
}
|
||||||
reg_al = 1;
|
reg_al = 1;
|
||||||
reg_ah = 1;
|
reg_ah = 1;
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user