SilentPatch/SilentPatch/Common_ddraw.h
Silent 2af4ec8e06
Obtain desktop resolution regardless of DPI scaling
Fixes "Cannot find X video mode" when DPI scaling is in use
2021-07-26 23:55:41 +02:00

21 lines
No EOL
624 B
C++

#pragma once
#include <cstdint>
namespace Common
{
namespace Patches
{
bool FixRwcseg_Patterns();
void DDraw_III_10( uint32_t width, uint32_t height, const char* desktopText );
void DDraw_III_11( uint32_t width, uint32_t height, const char* desktopText );
void DDraw_III_Steam( uint32_t width, uint32_t height, const char* desktopText );
void DDraw_VC_10( uint32_t width, uint32_t height, const char* desktopText );
void DDraw_VC_11( uint32_t width, uint32_t height, const char* desktopText );
void DDraw_VC_Steam( uint32_t width, uint32_t height, const char* desktopText );
void DDraw_Common();
}
};