From 633db415c7e588ca49395cdb36d3dbfc24711e17 Mon Sep 17 00:00:00 2001
From: johns <>
Date: Sat, 20 May 2000 23:16:27 +0000
Subject: [PATCH] Changed for real 24bpp video mode

---
 src/include/player.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/include/player.h b/src/include/player.h
index c96aaf5d3..723bec0f8 100644
--- a/src/include/player.h
+++ b/src/include/player.h
@@ -87,9 +87,12 @@ struct _player_ {
 	struct __4pixel16__ {
 	    VMemType16	Pixels[4];	/// palette colors #0 ... #3
 	}	Depth16;		/// player colors for 16bpp
+	struct __4pixel24__ {
+	    VMemType24	Pixels[4];	/// palette colors #0 ... #3
+	}	Depth24;		/// player colors for 24bpp
 	struct __4pixel32__ {
 	    VMemType32	Pixels[4];	/// palette colors #0 ... #3
-	}	Depth32;		/// player colors for 24/32bpp
+	}	Depth32;		/// player colors for 32bpp
     }		UnitColors;		/// Unit colors for faster setup
 
     // FIXME: this should be removed, use UnitColors insteed