summaryrefslogtreecommitdiff
path: root/src/cObject.h
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2019-03-06 22:59:13 +0100
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2019-03-06 22:59:13 +0100
commit98da4bb94fbd2e65b1634f01519e3bbd59b76592 (patch)
treeb70d3c45d6df559fea00bc4b5aa792ae259c3275 /src/cObject.h
parenta472dc51a18ad16bd8c72337023a08251a5888a8 (diff)
downloadtermgl-98da4bb94fbd2e65b1634f01519e3bbd59b76592.tar.gz
converting size variables to unsigned #1
Diffstat (limited to 'src/cObject.h')
-rw-r--r--src/cObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cObject.h b/src/cObject.h
index 08594b3..2504d71 100644
--- a/src/cObject.h
+++ b/src/cObject.h
@@ -89,7 +89,7 @@ protected: //For child classes
cObject();
/** For inheriting classes: sets size of framebuffer
*/
- void setSize(int _sx, int _sy);
+ void setSize(unsigned int _sx, unsigned int _sy);
/** For inheriting classes: frees the framebuffer
*/