PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Revision:
45:bbfc6002118c
Parent:
23:f88837b8f914
--- a/POKITTO_LIBS/ImageFormat/BmpImage.cpp	Tue May 01 18:58:31 2018 +0000
+++ b/POKITTO_LIBS/ImageFormat/BmpImage.cpp	Mon May 21 18:03:03 2018 +0000
@@ -50,6 +50,11 @@
 #include "FileIO.h"
 #endif
 
+
+#define max(a,b) ((a)>(b)?(a):(b))
+#define min(a,b) ((a)<(b)?(a):(b))
+
+
 #if POK_ENABLE_SD > 0