PokittoLib with changes to lcd refresh etc.

Dependents:   Pokittris

Fork of Pokitto by Pokitto Community Team

This is a fork by user @Spinal, and is used in Pokittris for testing. Do not import this to your own program.

Revision:
7:fee7bc74477f
Parent:
4:ecf2fe370c1c
--- a/Pokitto_settings.h	Sat Oct 07 21:34:27 2017 +0000
+++ b/Pokitto_settings.h	Sun Oct 08 18:51:34 2017 +0000
@@ -243,15 +243,19 @@
     #endif // PROJ_TILEBITDEPTH
 #else
 #ifndef PROJ_SCREENMODE
+    #undef POK_COLORDEPTH
     #ifdef PROJ_HIRES
         #if PROJ_HIRES > 0
             #define POK_SCREENMODE MODE_HI_4COLOR
+            #undef POK_COLORDEPTH
             #define POK_COLORDEPTH 2
         #elif PROJ_HICOLOR > 0
             #define POK_SCREENMODE MODE_256_COLOR
+            #undef POK_COLORDEPTH
             #define POK_COLORDEPTH 8
         #else
             #define POK_SCREENMODE MODE_FAST_16COLOR
+            #undef POK_COLORDEPTH
             #define POK_COLORDEPTH 4
         #endif // PROJ_HIRES
     #else