From fbdf19445c20a59dfce9be75e02e20ff987ed6f9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 2 Jan 2005 23:03:08 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageTypes.h b/stepmania/src/RageTypes.h index 017e53e02c..6fe24bfd7a 100644 --- a/stepmania/src/RageTypes.h +++ b/stepmania/src/RageTypes.h @@ -192,7 +192,7 @@ inline unsigned char FTOC(float a) class RageVColor { public: - unsigned char b,g,r,a; // specific ordering required by Direct3D + uint8_t b,g,r,a; // specific ordering required by Direct3D RageVColor(): b(0), g(0), r(0), a(0) { } RageVColor(const RageColor &rc) { *this = rc; }