]> git.sur5r.net Git - cc65/commitdiff
Added reference to unused variable to avoid GCC 4.6 warning.
authorOliver Schmidt <ol.sc@web.de>
Thu, 2 May 2013 12:39:47 +0000 (15:39 +0300)
committerOliver Schmidt <ol.sc@web.de>
Thu, 2 May 2013 12:39:47 +0000 (15:39 +0300)
src/sp65/koala.c

index 9212f97511b14c6ee5cf6aa049e874ba36c7fdb7..17beee91ab37e772338c36790e46cbecbe97f6cb 100644 (file)
@@ -94,6 +94,9 @@ StrBuf* GenKoala (const Bitmap* B, const Collection* A attribute ((unused)))
     /* Add $4400 as load address */
     SB_AppendChar (D, 0x00);
     SB_AppendChar (D, 0x44);
+    
+    /* TODO: The actual work ;-) */
+    (void)Screen;
 
     /* Return the converted bitmap */
     return D;