summaryrefslogtreecommitdiff
path: root/src/gfx.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-03-07 12:11:48 +0000
committerrubidium <rubidium@openttd.org>2007-03-07 12:11:48 +0000
commit24c4d5b06d231785db01500360c26815d8fe4d15 (patch)
tree757477dbdc02025cc29690a4e66e40f872cab02b /src/gfx.h
parent36bb92ae241403d61dc7a3e5a1696b615be61395 (diff)
downloadopenttd-24c4d5b06d231785db01500360c26815d8fe4d15.tar.xz
(svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
Diffstat (limited to 'src/gfx.h')
-rw-r--r--src/gfx.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gfx.h b/src/gfx.h
index a970830b6..3a3269d41 100644
--- a/src/gfx.h
+++ b/src/gfx.h
@@ -93,13 +93,13 @@ void CreateConsole();
typedef int32 CursorID;
typedef byte Pixel;
-typedef struct Point {
+struct Point {
int x,y;
-} Point;
+};
-typedef struct Rect {
+struct Rect {
int left,top,right,bottom;
-} Rect;
+};
/** A single sprite of a list of animated cursors */
struct AnimCursor {
@@ -108,7 +108,7 @@ struct AnimCursor {
byte display_time; ///< Amount of ticks this sprite will be shown
};
-typedef struct CursorVars {
+struct CursorVars {
Point pos, size, offs, delta; ///< position, size, offset from top-left, and movement
Point draw_pos, draw_size; ///< position and size bounding-box for drawing
SpriteID sprite; ///< current image of cursor
@@ -123,20 +123,20 @@ typedef struct CursorVars {
bool dirty; ///< the rect occupied by the mouse is dirty (redraw)
bool fix_at; ///< mouse is moving, but cursor is not (used for scrolling)
bool in_window; ///< mouse inside this window, determines drawing logic
-} CursorVars;
+};
-typedef struct DrawPixelInfo {
+struct DrawPixelInfo {
Pixel *dst_ptr;
int left, top, width, height;
int pitch;
uint16 zoom;
-} DrawPixelInfo;
+};
-typedef struct Colour {
+struct Colour {
byte r;
byte g;
byte b;
-} Colour;
+};
@@ -181,12 +181,12 @@ void UndrawMouseCursor();
#include "helpers.hpp"
-typedef enum FontSizes {
+enum FontSize {
FS_NORMAL,
FS_SMALL,
FS_LARGE,
FS_END,
-} FontSize;
+};
DECLARE_POSTFIX_INCREMENT(FontSize);
@@ -292,9 +292,9 @@ VARDEF byte _colour_gradient[16][8];
VARDEF bool _use_dos_palette;
-typedef enum StringColorFlags {
+enum StringColorFlags {
IS_PALETTE_COLOR = 0x100, ///< color value is already a real palette color index, not an index of a StringColor
-} StringColorFlags;
+};
#ifdef _DEBUG