(svn r16604) -Codechange: Use FS_BEGIN for iterating over fonts.

This commit is contained in:
alberth
2009-06-20 15:05:59 +00:00
parent 4419366f94
commit 8aa51823fc
2 changed files with 8 additions and 7 deletions

View File

@@ -148,10 +148,12 @@ struct Colour {
/** Available font sizes */
enum FontSize {
FS_NORMAL,
FS_SMALL,
FS_LARGE,
FS_NORMAL, ///< Index of the normal font in the font tables.
FS_SMALL, ///< Index of the small font in the font tables.
FS_LARGE, ///< Index of the large font in the font tables.
FS_END,
FS_BEGIN = FS_NORMAL, ///< First font.
};
DECLARE_POSTFIX_INCREMENT(FontSize);