mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-28 23:03:01 +05:00
2af4ec8e06
Fixes "Cannot find X video mode" when DPI scaling is in use
21 lines
No EOL
624 B
C++
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();
|
|
}
|
|
}; |