diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-17 12:07:30 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-17 12:07:30 +0000 |
| commit | ba5e6aec475a198ee8555a048695ed29184a8af5 (patch) | |
| tree | 908e07133f40b1f7eb5dfce093f13a04d8f287ab | |
| parent | fc2bb6cd2086045d8261b0bf95703510a3aa1bc6 (diff) | |
| download | rockbox-ba5e6aec475a198ee8555a048695ed29184a8af5.zip rockbox-ba5e6aec475a198ee8555a048695ed29184a8af5.tar.gz rockbox-ba5e6aec475a198ee8555a048695ed29184a8af5.tar.bz2 rockbox-ba5e6aec475a198ee8555a048695ed29184a8af5.tar.xz | |
Removed snprintf warning. Removed unnecessary #ifdef
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1032 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/sokoban.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/recorder/sokoban.c b/apps/recorder/sokoban.c index 159516e..ff3f13f 100644 --- a/apps/recorder/sokoban.c +++ b/apps/recorder/sokoban.c @@ -17,10 +17,8 @@ * ****************************************************************************/ +#include <sprintf.h> #include "config.h" - -#ifdef HAVE_LCD_BITMAP - #include "sokoban.h" #include "lcd.h" #include "button.h" @@ -582,5 +580,3 @@ void sokoban(void) lcd_clear_display(); sokoban_loop(); } - -#endif |