Adafruit GFX with some tweaks

Fork of Adafruit_GFX by Neal Horman

Revision:
15:77feec1c0684
Parent:
12:7964c2cfdebc
--- a/Adafruit_SSD1306.h	Sat Oct 25 20:41:38 2014 +0000
+++ b/Adafruit_SSD1306.h	Tue Nov 11 22:02:52 2014 +0000
@@ -208,7 +208,7 @@
 
 			// TODO - this will segfault if buffer.size() % 16 != 0
 			for(x=1; x<sizeof(buff); x++) 
-				buff[x] = buffer[i+x];
+				buff[x] = buffer[i+x-1];
 			mi2c.write(mi2cAddress, buff, sizeof(buff));
 		}
 	};