diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-08 14:38:12 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-08 14:38:12 +0000 |
commit | d72e1987f9703d2e3a37ad930a1bc8ceaf525065 (patch) | |
tree | ac3261e9e39825336514ef1ab11a6f2d5cd8c7ea /src/being.h | |
parent | 016faf8449aeb7dba2738da4fefa3609b3af589c (diff) | |
download | mana-d72e1987f9703d2e3a37ad930a1bc8ceaf525065.tar.gz mana-d72e1987f9703d2e3a37ad930a1bc8ceaf525065.tar.bz2 mana-d72e1987f9703d2e3a37ad930a1bc8ceaf525065.tar.xz mana-d72e1987f9703d2e3a37ad930a1bc8ceaf525065.zip |
Changed signatures to prevent the wrong members to be overloaded on architectures with 64-bit integers and to shut some compiler warnings.
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.h b/src/being.h index 8820c30a..afb3cb8b 100644 --- a/src/being.h +++ b/src/being.h @@ -259,7 +259,7 @@ class Being : public Sprite * Draws the name text below the being. */ virtual void - drawName(Graphics *graphics, int offsetX, int offsetY) {}; + drawName(Graphics *, int, int) {}; /** * Returns the type of the being. |