diff options
| author | Franklin Wei <git@fwei.tk> | 2018-04-17 18:46:05 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2018-04-17 18:46:05 -0400 |
| commit | e84fc26fb83c33eba55357e78e52b2673a45b673 (patch) | |
| tree | 4a61c816de80f9b3ae3459fe44dce34cfec99282 /apps/plugins/puzzles/src/filling.c | |
| parent | 6dc9d1d7309613fdc0518c03b2cdf3253d4c52fd (diff) | |
| download | rockbox-e84fc26fb83c33eba55357e78e52b2673a45b673.zip rockbox-e84fc26fb83c33eba55357e78e52b2673a45b673.tar.gz rockbox-e84fc26fb83c33eba55357e78e52b2673a45b673.tar.bz2 rockbox-e84fc26fb83c33eba55357e78e52b2673a45b673.tar.xz | |
puzzles: clean up for rockbox
Disabled vprintf() call in Filling, and reordered vertices in Unequal.
Change-Id: Ia3d8cd46ae3a7909b7dc2a8de762aa3173634d1e
Diffstat (limited to 'apps/plugins/puzzles/src/filling.c')
| -rw-r--r-- | apps/plugins/puzzles/src/filling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/puzzles/src/filling.c b/apps/plugins/puzzles/src/filling.c index c331dac..c278ada 100644 --- a/apps/plugins/puzzles/src/filling.c +++ b/apps/plugins/puzzles/src/filling.c @@ -69,7 +69,7 @@ static unsigned char verbose; static void printv(const char *fmt, ...) { -#ifndef PALM +#if !defined(PALM) && !defined(ROCKBOX) if (verbose) { va_list va; va_start(va, fmt); |