[FREELDR]

Fix compilation on ARM.

svn path=/trunk/; revision=75404
This commit is contained in:
David Quintana 2017-07-25 18:12:33 +00:00
parent ed2b3728b6
commit 536fd901af
2 changed files with 4 additions and 0 deletions

View file

@ -388,6 +388,8 @@ VOID OptionMenuReboot(VOID)
{
UiMessageBox("The system will now reboot.");
#if defined(__i386__) || defined(_M_AMD64)
DiskStopFloppyMotor();
#endif
Reboot();
}

View file

@ -61,7 +61,9 @@ VOID __cdecl BootMain(IN PCCH CmdLine)
Quit:
/* If we reach this point, something went wrong before, therefore reboot */
#if defined(__i386__) || defined(_M_AMD64)
DiskStopFloppyMotor();
#endif
Reboot();
}