mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-29 20:34:56 +01:00
Round: the m_bonus field should be of type bool, not int.
This commit is contained in:
parent
2dea386ac9
commit
3b4750d3bf
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ public:
|
|||
wstring getWord() const;
|
||||
unsigned int getWordLen() const { return m_word.size(); }
|
||||
int getPoints() const { return m_points; }
|
||||
int getBonus() const { return m_bonus; }
|
||||
bool getBonus() const { return m_bonus; }
|
||||
const vector<Tile> &getTiles() const { return m_word; }
|
||||
|
||||
/*************************
|
||||
|
@ -91,7 +91,7 @@ private:
|
|||
vector<char> m_tileOrigin;
|
||||
Coord m_coord;
|
||||
int m_points;
|
||||
int m_bonus;
|
||||
bool m_bonus;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue