mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
Fixes cursor flickering issues in Siege of Avalon (issue #34) and multimon flip issues on Windows 8.1 (issue #28).
12 lines
226 B
C++
12 lines
226 B
C++
#pragma once
|
|
|
|
typedef unsigned long DWORD;
|
|
|
|
namespace Config
|
|
{
|
|
const int delayedFlipModeTimeout = 200;
|
|
const int maxPaletteUpdatesPerMs = 5;
|
|
const int minExpectedFlipsPerSec = 5;
|
|
const DWORD primarySurfaceExtraRows = 2;
|
|
}
|