mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
21 lines
343 B
C++
21 lines
343 B
C++
#pragma once
|
|
|
|
#include <Config/MappedSetting.h>
|
|
|
|
namespace Config
|
|
{
|
|
namespace Settings
|
|
{
|
|
class AlignSysMemSurfaces : public MappedSetting<UINT>
|
|
{
|
|
public:
|
|
AlignSysMemSurfaces()
|
|
: MappedSetting("AlignSysMemSurfaces", "on", { {"off", 8}, {"on", 0} })
|
|
{
|
|
}
|
|
};
|
|
}
|
|
|
|
extern Settings::AlignSysMemSurfaces alignSysMemSurfaces;
|
|
}
|