diff options
| author | Johannes Schickel | 2009-05-24 15:17:42 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2009-05-24 15:17:42 +0000 | 
| commit | b3c6751b9b7fc1401fd5e87a034cdaec92b67b20 (patch) | |
| tree | aa00dba58fb88ea2e095b886963370c7290c692b /graphics/scaler.cpp | |
| parent | 7c1eb057146af11793c627327f3fefe309d27fbb (diff) | |
| download | scummvm-rg350-b3c6751b9b7fc1401fd5e87a034cdaec92b67b20.tar.gz scummvm-rg350-b3c6751b9b7fc1401fd5e87a034cdaec92b67b20.tar.bz2 scummvm-rg350-b3c6751b9b7fc1401fd5e87a034cdaec92b67b20.zip  | |
Strip trailing whitespaces in the whole code base.
svn-id: r40867
Diffstat (limited to 'graphics/scaler.cpp')
| -rw-r--r-- | graphics/scaler.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/scaler.cpp b/graphics/scaler.cpp index da84938bc5..11767848ed 100644 --- a/graphics/scaler.cpp +++ b/graphics/scaler.cpp @@ -116,12 +116,12 @@ void InitLUT(Graphics::PixelFormat format) {  	hqx_low3bits = (7 << format.rShift) | (7 << format.gShift) | (7 << format.bShift),  	hqx_highbits = format.RGBToColor(255,255,255) ^ hqx_lowbits; -	 +  	// FIXME: The following code only does the right thing  	// if the color order is RGB or BGR, i.e., green is in the middle.  	hqx_greenMask = format.RGBToColor(0,255,0);  	hqx_redBlueMask = format.RGBToColor(255,0,255); -	 +  	hqx_green_redBlue_Mask = (hqx_greenMask << 16) | hqx_redBlueMask;  #endif  }  | 
