master
Mark 2022-07-23 12:46:18 -07:00
parent dfa3cc6c5b
commit 720c12ae87
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#include "bitmap.hpp" #include "bitmap.hpp"
// Simple bitmap library.
// Used to debug music visualizer.
Bitmap::Bitmap(size_t w, size_t h) { Bitmap::Bitmap(size_t w, size_t h) {
this->width = w; this->width = w;
this->height = h; this->height = h;