mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Small improvements
This commit is contained in:
parent
8202c8fc6c
commit
8f7a3ef336
@ -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();
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user