No need for size of sBuffer[] array in definition

The number of elements in the sBuffer[] array is already specified
in the declaration.
This commit is contained in:
Scott Allen 2016-08-03 20:16:54 -04:00
parent d91314cdaf
commit d0c0a940f2
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
//========== class Arduboy2Base ==========
//========================================
uint8_t Arduboy2Base::sBuffer[(HEIGHT*WIDTH)/8];
uint8_t Arduboy2Base::sBuffer[];
Arduboy2Base::Arduboy2Base()
{