Various DirectDraw items (#1411)

This commit is contained in:
MS
2025-03-15 11:12:10 -04:00
committed by GitHub
parent b0b68052d4
commit 51fc69e49f
5 changed files with 184 additions and 93 deletions

View File

@@ -10,6 +10,7 @@
struct DeviceModesInfo {
// SIZE 0x0c
struct Mode {
// FUNCTION: BETA10 0x10122fc0
int operator==(const Mode& p_mode) const
{
return ((width == p_mode.width) && (height == p_mode.height) && (bitsPerPixel == p_mode.bitsPerPixel));