change RBG to RGB which follows the argument order and hence makes more sense...

svn-id: r6767
This commit is contained in:
Jonathan Gray 2003-03-08 06:53:32 +00:00
parent e4a8edfc67
commit 361e312a6c
5 changed files with 18 additions and 18 deletions

View file

@ -117,9 +117,9 @@ public:
virtual int16 get_height();
virtual int16 get_width();
// Methods that convert RBG to/from colors suitable for the overlay.
virtual int16 RBGToColor(uint8 r, uint8 g, uint8 b);
virtual void colorToRBG(int16 color, uint8 &r, uint8 &g, uint8 &b);
// Methods that convert RGB to/from colors suitable for the overlay.
virtual int16 RGBToColor(uint8 r, uint8 g, uint8 b);
virtual void colorToRGB(int16 color, uint8 &r, uint8 &g, uint8 &b);
static OSystem *create(int gfx_mode, bool full_screen);