aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/bitmap.h
diff options
context:
space:
mode:
authorStrangerke2011-07-02 01:02:14 +0200
committerStrangerke2011-07-02 01:02:14 +0200
commit8e531d0da391b895a573c36c4b1bd8074571df83 (patch)
treef4c67a215f3e552540f36fdda0c28f7524e325cb /engines/cge/bitmap.h
parent601bfbd6095a88b2f6b77d2dec16731fe4fbf687 (diff)
downloadscummvm-rg350-8e531d0da391b895a573c36c4b1bd8074571df83.tar.gz
scummvm-rg350-8e531d0da391b895a573c36c4b1bd8074571df83.tar.bz2
scummvm-rg350-8e531d0da391b895a573c36c4b1bd8074571df83.zip
CGE: Some more renaming (WIP)
Diffstat (limited to 'engines/cge/bitmap.h')
-rw-r--r--engines/cge/bitmap.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/cge/bitmap.h b/engines/cge/bitmap.h
index 99464bffeb..846f0149be 100644
--- a/engines/cge/bitmap.h
+++ b/engines/cge/bitmap.h
@@ -41,14 +41,14 @@ namespace CGE {
#include "common/pack-start.h"
-struct BGR4 {
- uint16 b : 2;
- uint16 B : 6;
- uint16 g : 2;
- uint16 G : 6;
- uint16 r : 2;
- uint16 R : 6;
- uint16 Z : 8;
+struct Bgr4 {
+ uint16 _b : 2;
+ uint16 _B : 6;
+ uint16 _g : 2;
+ uint16 _G : 6;
+ uint16 _r : 2;
+ uint16 _R : 6;
+ uint16 _Z : 8;
};