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

Revision:
58:5f58a2846a20
Parent:
23:f88837b8f914
--- a/POKITTO_LIBS/ImageFormat/defines_linux_SIM.h	Tue Oct 02 20:38:50 2018 +0000
+++ b/POKITTO_LIBS/ImageFormat/defines_linux_SIM.h	Sun Oct 07 10:06:28 2018 +0000
@@ -15,7 +15,7 @@
 char* _strupr( char* s )
   {
   char* p = s;
-  while (*p = toupper( *p )) p++;
+  while (*p){ *p = toupper( *p );p++;}
   return s;
   }