Fix mingw warning as error

This commit is contained in:
Nathan 2024-02-09 18:21:02 -05:00
parent 726fe5c752
commit ef4a386b1a

View File

@ -226,8 +226,9 @@ int MxDirect3D::ZBufferDepth(MxAssignedDevice* p_assignedDevice)
else if (deviceDepth & DDBD_8) { else if (deviceDepth & DDBD_8) {
depth = 8; depth = 8;
} }
else else {
depth = -1; depth = -1;
}
return depth; return depth;
} }