RoCorbera / BlueVGA

VGA library for STM32F103C (BluePill) that can manipulate a screen with 28x30 tiles with 8x8 pixels each, in a total resolution of 224x240 pixels with 8 colors using a very low footprint
Other
62 stars 12 forks source link

File bluebitmap.cpp, line 88 variable undefined #17

Open vtpgit opened 4 months ago

vtpgit commented 4 months ago

File bluebitmap.cpp, line 88

uint32 color32Bits = color << 24 | color << 16 | color << 8 | color;

needs to be

uint32_t color32Bits = color << 24 | color << 16 | color << 8 | color;

image

RoCorbera commented 2 months ago

Thanks!

RoCorbera commented 2 months ago

it was fixed 3 years ago in https://github.com/RoCorbera/BlueVGA/commit/593deb38ded294738a927787faa381d459472677