From: Oliver Schmidt
Date: Thu, 2 May 2013 12:39:47 +0000 (+0300)
Subject: Added reference to unused variable to avoid GCC 4.6 warning.
X-Git-Tag: V2.14~34
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=39a877175bdb6e65e95a9a9a0c9c0cced8eb41a8;p=cc65
Added reference to unused variable to avoid GCC 4.6 warning.
---
diff --git a/src/sp65/koala.c b/src/sp65/koala.c
index 9212f9751..17beee91a 100644
--- a/src/sp65/koala.c
+++ b/src/sp65/koala.c
@@ -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;