1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/Config/Settings/AlignSysMemSurfaces.h
2023-11-05 14:21:18 +01:00

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;
}