mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
11 lines
190 B
C++
11 lines
190 B
C++
#pragma once
|
|
|
|
typedef unsigned long DWORD;
|
|
|
|
namespace Config
|
|
{
|
|
const int maxPrimaryUpdateRate = 60;
|
|
const int primaryUpdateDelayAfterFlip = 100;
|
|
const DWORD preallocatedGdiDcCount = 4;
|
|
}
|