Small improvements

This commit is contained in:
Amos 2022-03-16 02:03:06 +01:00
parent 8202c8fc6c
commit 8f7a3ef336
3 changed files with 9 additions and 8 deletions

View File

@ -117,7 +117,8 @@ void Console_Init()
if (!SetConsoleMode(hOutput, dwMode)) // Some editions of Windows have 'VirtualTerminalLevel' disabled by default.
{
// Warn the user if 'VirtualTerminalLevel' could not be set on users environment.
MessageBoxA(NULL, "Failed to set console mode 'VirtualTerminalLevel'.\nPlease omit the '-ansiclr' parameter and restart \nthe game if output logging appears distorted.", "SDK Warning", MB_ICONEXCLAMATION | MB_OK);
MessageBoxA(NULL, "Failed to set console mode 'VirtualTerminalLevel'.\n"
"Please omit the '-ansiclr' parameter and restart \nthe game if output logging appears distorted.", "SDK Warning", MB_ICONEXCLAMATION | MB_OK);
}
SetConsoleBackgroundColor(0x0000);
AnsiColors_Init();

View File

@ -212,9 +212,9 @@ void GetPresent()
{
if (mat_showdxoutput->GetBool())
{
DevMsg(eDLL_T::MS, "+--------------------------------------------------------+\n");
DevMsg(eDLL_T::MS, "| >>>>>>>>>| VIRTUAL METHOD TABLE HOOK FAILED |<<<<<<<<< |\n");
DevMsg(eDLL_T::MS, "+--------------------------------------------------------+\n");
Error(eDLL_T::MS, "+--------------------------------------------------------+\n");
Error(eDLL_T::MS, "| >>>>>>>>>| VIRTUAL METHOD TABLE HOOK FAILED |<<<<<<<<< |\n");
Error(eDLL_T::MS, "+--------------------------------------------------------+\n");
}
DirectX_Shutdown();
return;
@ -390,9 +390,9 @@ HRESULT __stdcall Present(IDXGISwapChain* pSwapChain, UINT nSyncInterval, UINT n
{
if (mat_showdxoutput->GetBool())
{
DevMsg(eDLL_T::MS, "+--------------------------------------------------------+\n");
DevMsg(eDLL_T::MS, "| >>>>>>>>>>| GET DVS AND CTX FROM SCP FAILED |<<<<<<<<< |\n");
DevMsg(eDLL_T::MS, "+--------------------------------------------------------+\n");
Error(eDLL_T::MS, "+--------------------------------------------------------+\n");
Error(eDLL_T::MS, "| >>>>>>>>>>| GET DVS AND CTX FROM SCP FAILED |<<<<<<<<< |\n");
Error(eDLL_T::MS, "+--------------------------------------------------------+\n");
}
return g_fnIDXGISwapChainPresent(pSwapChain, nSyncInterval, nFlags);
}

View File

@ -12,7 +12,7 @@ static IGetVersionExA g_oGetVersionExA = null
BOOL WINAPI HGetVersionExA(_Inout_ LPOSVERSIONINFOA lpVersionInformation)
{
#ifdef DEDICATED
// Return false for dedicated to skip 'SetPRocessDpiAwareness' in 'CEngineAPI:OnStartup()'.
// Return false for dedicated to skip 'SetProcessDpiAwareness' in 'CEngineAPI:OnStartup()'.
return NULL;
#else
return g_oGetVersionExA(lpVersionInformation);