diff options
author | Torbjörn Andersson | 2007-02-20 17:22:58 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2007-02-20 17:22:58 +0000 |
commit | 11682377e42c1ce70578eb2043776295b72f9b69 (patch) | |
tree | f912c489add31850dacff851e7eef0542fc1b584 /engines/agi | |
parent | d689187aa34e63cf3a4caac6b68ff8e0b1e66e28 (diff) | |
download | scummvm-rg350-11682377e42c1ce70578eb2043776295b72f9b69.tar.gz scummvm-rg350-11682377e42c1ce70578eb2043776295b72f9b69.tar.bz2 scummvm-rg350-11682377e42c1ce70578eb2043776295b72f9b69.zip |
More header consistency fixes. (Actually, there was nothing at all to keep
font.h from being included multiple times.)
svn-id: r25744
Diffstat (limited to 'engines/agi')
-rw-r--r-- | engines/agi/agi.h | 2 | ||||
-rw-r--r-- | engines/agi/font.h | 5 | ||||
-rw-r--r-- | engines/agi/keyboard.h | 2 | ||||
-rw-r--r-- | engines/agi/logic.h | 2 | ||||
-rw-r--r-- | engines/agi/lzw.h | 2 | ||||
-rw-r--r-- | engines/agi/opcodes.h | 2 | ||||
-rw-r--r-- | engines/agi/picture.h | 2 |
7 files changed, 11 insertions, 6 deletions
diff --git a/engines/agi/agi.h b/engines/agi/agi.h index 0506ceb802..62e9bc4681 100644 --- a/engines/agi/agi.h +++ b/engines/agi/agi.h @@ -756,4 +756,4 @@ public: } // End of namespace Agi -#endif // AGI_H +#endif /* AGI_H */ diff --git a/engines/agi/font.h b/engines/agi/font.h index 39ba98e29f..b876e6eea3 100644 --- a/engines/agi/font.h +++ b/engines/agi/font.h @@ -22,6 +22,9 @@ * */ +#ifndef AGI_FONT_H +#define AGI_FONT_H + #include "common/stdafx.h" #include "agi/agi.h" @@ -291,3 +294,5 @@ static const uint8 curFont[] = { }; } // End of namespace Agi + +#endif /* AGI_FONT_H */ diff --git a/engines/agi/keyboard.h b/engines/agi/keyboard.h index 13d2477798..8a905127e3 100644 --- a/engines/agi/keyboard.h +++ b/engines/agi/keyboard.h @@ -75,4 +75,4 @@ extern uint8 scancodeTable[]; } // End of namespace Agi -#endif /* AGI_KEYBOARD_H */ +#endif /* AGI_KEYBOARD_H */ diff --git a/engines/agi/logic.h b/engines/agi/logic.h index 371c384cce..d8d14eb023 100644 --- a/engines/agi/logic.h +++ b/engines/agi/logic.h @@ -44,4 +44,4 @@ struct AgiLogic { } // End of namespace Agi -#endif /* AGI_LOGIC_H */ +#endif /* AGI_LOGIC_H */ diff --git a/engines/agi/lzw.h b/engines/agi/lzw.h index 509e8c65a6..f09c4e0b05 100644 --- a/engines/agi/lzw.h +++ b/engines/agi/lzw.h @@ -31,4 +31,4 @@ void lzwExpand(uint8 *, uint8 *, int32); } // End of namespace Agi -#endif /* AGI_LZW_H */ +#endif /* AGI_LZW_H */ diff --git a/engines/agi/opcodes.h b/engines/agi/opcodes.h index 8adffec4a4..e8a29c77d5 100644 --- a/engines/agi/opcodes.h +++ b/engines/agi/opcodes.h @@ -41,4 +41,4 @@ extern AgiLogicnames logicNamesIf[]; } // End of namespace Agi -#endif /* AGI_OPCODES_H */ +#endif /* AGI_OPCODES_H */ diff --git a/engines/agi/picture.h b/engines/agi/picture.h index 90995be2fa..c218479687 100644 --- a/engines/agi/picture.h +++ b/engines/agi/picture.h @@ -75,4 +75,4 @@ public: } // End of namespace Agi -#endif /* AGI_PICTURE_H */ +#endif /* AGI_PICTURE_H */ |