Buildfix.
This commit is contained in:
parent
55c7110e2a
commit
2b5d38d2d0
1 changed files with 2 additions and 2 deletions
|
@ -50,8 +50,8 @@ enum class GPUBackend {
|
|||
DIRECT3D9 = 1,
|
||||
};
|
||||
enum {
|
||||
GPU_BACKEND_OPENGL = GPUBackend::OPENGL,
|
||||
GPU_BACKEND_DIRECT3D9 = GPUBackend::DIRECT3D9,
|
||||
GPU_BACKEND_OPENGL = (int)GPUBackend::OPENGL,
|
||||
GPU_BACKEND_DIRECT3D9 = (int)GPUBackend::DIRECT3D9,
|
||||
};
|
||||
|
||||
enum AudioBackendType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue