mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[NTVDM]: Improve diagnostics.
svn path=/trunk/; revision=64317
This commit is contained in:
@@ -1117,7 +1117,7 @@ static VOID VgaChangeMode(VOID)
|
||||
/* Enter new text mode */
|
||||
if (!VgaEnterTextMode(&Resolution))
|
||||
{
|
||||
DisplayMessage(L"An unexpected VGA error occurred while switching into text mode.");
|
||||
DisplayMessage(L"An unexpected VGA error occurred while switching into text mode. Error: %u", GetLastError());
|
||||
EmulatorTerminate();
|
||||
return;
|
||||
}
|
||||
@@ -1127,7 +1127,7 @@ static VOID VgaChangeMode(VOID)
|
||||
/* Enter graphics mode */
|
||||
if (!VgaEnterGraphicsMode(&Resolution))
|
||||
{
|
||||
DisplayMessage(L"An unexpected VGA error occurred while switching into graphics mode.");
|
||||
DisplayMessage(L"An unexpected VGA error occurred while switching into graphics mode. Error: %u", GetLastError());
|
||||
EmulatorTerminate();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user