mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-08-08 07:09:52 +00:00
Get rid of a lot of gcc warnings
Mostly signed/unsigned comparisons. Also some bugs, but I don't remember where :D
This commit is contained in:
parent
ce4e76a3a1
commit
fe0ab0418b
88 changed files with 801 additions and 831 deletions
|
@ -59,7 +59,7 @@ public:
|
|||
int getHeight() const {return int(height);}
|
||||
|
||||
void setSegs(int x, int y, float dgox, float dgoy, float dgmx, float dgmy, float dgtm, bool dgo);
|
||||
void setDrawGridAlpha(int x, int y, float alpha);
|
||||
void setDrawGridAlpha(size_t x, size_t y, float alpha);
|
||||
void repeatTextureToFill(bool on);
|
||||
void refreshRepeatTextureToFill();
|
||||
bool isRepeatingTextureToFill() const { return repeatingTextureToFill; }
|
||||
|
@ -99,7 +99,7 @@ public:
|
|||
protected:
|
||||
bool repeatingTextureToFill;
|
||||
float gridTimer;
|
||||
int xDivs, yDivs;
|
||||
size_t xDivs, yDivs;
|
||||
Vector ** drawGrid;
|
||||
|
||||
void resetGrid();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue