diff options
| author | Franklin Wei <me@fwei.tk> | 2018-04-18 18:12:06 -0400 |
|---|---|---|
| committer | Franklin Wei <franklin@rockbox.org> | 2020-12-07 19:27:19 -0500 |
| commit | cd9f68e69dc9e61ef5a9cc4602a0bc2811442656 (patch) | |
| tree | 733a0e0f6b09a9085d72e8f8ba47321944826e8e | |
| parent | 93de2db34ee5a2e6ea983597e28db396939d87df (diff) | |
| download | puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.zip puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.tar.gz puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.tar.bz2 puzzles-cd9f68e69dc9e61ef5a9cc4602a0bc2811442656.tar.xz | |
Filling: disable printv() on Rockbox
| -rw-r--r-- | filling.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ static bool verbose; static void printv(const char *fmt, ...) { -#ifndef PALM +#if !defined(PALM) && !defined(ROCKBOX) if (verbose) { va_list va; va_start(va, fmt); |