diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-28 08:58:45 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-28 08:58:45 +0000 |
| commit | 274e5c292af1f1de1516fb9feedaa94b41822ae1 (patch) | |
| tree | dee8894446b631f50dbe6bbb46442d20e3ab9567 /apps/plugins | |
| parent | 4766863bda7c808065275ae46aaa2782e7b39963 (diff) | |
| download | rockbox-274e5c292af1f1de1516fb9feedaa94b41822ae1.zip rockbox-274e5c292af1f1de1516fb9feedaa94b41822ae1.tar.gz rockbox-274e5c292af1f1de1516fb9feedaa94b41822ae1.tar.bz2 rockbox-274e5c292af1f1de1516fb9feedaa94b41822ae1.tar.xz | |
Killed a warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6078 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/sokoban.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/sokoban.c b/apps/plugins/sokoban.c index 20a370f..6e671d0 100644 --- a/apps/plugins/sokoban.c +++ b/apps/plugins/sokoban.c @@ -388,7 +388,7 @@ static int load_level(void) static void update_screen(void) { - short b = 0, c = 0,x,y; + short b = 0, c = 0; short rows = 0, cols = 0; char s[25]; |