diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-03-07 01:06:25 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-03-07 01:06:25 +0100 |
commit | 99249ba62bcdfbe300c6ab7db02088d8d1e118c4 (patch) | |
tree | c90f707b593d3d2ff3ba2e06aadadf10da35a696 /src/cRender.h | |
parent | 91312efb1490e899f8800c965865c8095f31f350 (diff) | |
download | termgl-99249ba62bcdfbe300c6ab7db02088d8d1e118c4.tar.gz |
Switched to unsigned cariables for all counting loops and buffer accesses
Diffstat (limited to 'src/cRender.h')
-rw-r--r-- | src/cRender.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cRender.h b/src/cRender.h index 5808c82..d262791 100644 --- a/src/cRender.h +++ b/src/cRender.h @@ -74,7 +74,7 @@ public: * Resizes console window for Windows * Sets Size to Console Window Size for Linux. Writes Error for _sx or _sy smaller than Screen. Get by getLastError() */ - cRender(char _backound, WORD _color, int _sx, int _sy); + cRender(char _backound, WORD _color, unsigned int _sx, unsigned int _sy); virtual ~cRender(); |