aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorJordi Vilalta Prat2008-01-28 00:14:17 +0000
committerJordi Vilalta Prat2008-01-28 00:14:17 +0000
commitd6c34bdc4b12ea7bef445ef4d84bf8a5370c02dd (patch)
treee6e98f266610f6428c248aed6abc75e637e45231 /graphics
parent66e9d4f5e8f35b28f8abd9ce53a0da4da3ce8985 (diff)
downloadscummvm-rg350-d6c34bdc4b12ea7bef445ef4d84bf8a5370c02dd.tar.gz
scummvm-rg350-d6c34bdc4b12ea7bef445ef4d84bf8a5370c02dd.tar.bz2
scummvm-rg350-d6c34bdc4b12ea7bef445ef4d84bf8a5370c02dd.zip
Fixed the spaces before tabs.
svn-id: r30667
Diffstat (limited to 'graphics')
-rw-r--r--graphics/font.h2
-rw-r--r--graphics/iff.h8
-rw-r--r--graphics/surface.cpp8
3 files changed, 9 insertions, 9 deletions
diff --git a/graphics/font.h b/graphics/font.h
index 5e72e9d4b3..3911e6d32c 100644
--- a/graphics/font.h
+++ b/graphics/font.h
@@ -104,7 +104,7 @@ struct BBX {
struct FontDesc {
const char * name; /* font name*/
int maxwidth; /* max width in pixels*/
- int height; /* height in pixels*/
+ int height; /* height in pixels*/
int fbbw, fbbh, fbbx, fbby; /* max bounding box */
int ascent; /* ascent (baseline) height*/
int firstchar; /* first character in bitmap*/
diff --git a/graphics/iff.h b/graphics/iff.h
index 148a145a1d..1bda15c9d7 100644
--- a/graphics/iff.h
+++ b/graphics/iff.h
@@ -59,8 +59,8 @@ protected:
void readCMAP(Common::IFFChunk &chunk);
void readBODY(Common::IFFChunk &chunk);
- BMHD _bitmapHeader;
- uint32 _colorCount;
+ BMHD _bitmapHeader;
+ uint32 _colorCount;
Surface *_surface;
byte **_colors;
@@ -83,8 +83,8 @@ protected:
void readCMAP(Common::IFFChunk &chunk);
void readBODY(Common::IFFChunk &chunk);
- BMHD _bitmapHeader;
- uint32 _colorCount;
+ BMHD _bitmapHeader;
+ uint32 _colorCount;
Surface *_surface;
byte **_colors;
diff --git a/graphics/surface.cpp b/graphics/surface.cpp
index bc815c360f..a9f3e75886 100644
--- a/graphics/surface.cpp
+++ b/graphics/surface.cpp
@@ -60,10 +60,10 @@ void Surface::create(uint16 width, uint16 height, uint8 bytesPP) {
}
void Surface::free() {
- ::free(pixels);
- pixels = 0;
- w = h = pitch = 0;
- bytesPerPixel = 0;
+ ::free(pixels);
+ pixels = 0;
+ w = h = pitch = 0;
+ bytesPerPixel = 0;
}
void Surface::hLine(int x, int y, int x2, uint32 color) {