aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/colours.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/colours.h')
-rw-r--r--engines/sludge/colours.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sludge/colours.h b/engines/sludge/colours.h
index 2caf963590..a613f6772c 100644
--- a/engines/sludge/colours.h
+++ b/engines/sludge/colours.h
@@ -42,7 +42,8 @@ inline unsigned short makeGrey(unsigned short int r) {
return ((r >> 3) << 11) | ((r >> 2) << 5) | (r >> 3);
}
-inline unsigned short makeColour(unsigned short int r, unsigned short int g, unsigned short int b) {
+inline unsigned short makeColour(unsigned short int r, unsigned short int g,
+ unsigned short int b) {
return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3);
}