diff options
author | William Wilgus <wilgus.william@gmail.com> | 2024-12-25 01:40:53 -0500 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2024-12-25 01:40:53 -0500 |
commit | b44f8f3723051754341ff663b31473503a801987 (patch) | |
tree | e5a17d0633f30f412e9c537026f5f711fd8d5cf3 | |
parent | 4fe6ce91ec6a596a2eb1a1186bb450502b4ef39e (diff) | |
download | rockbox-b44f8f3723.tar.gz rockbox-b44f8f3723.zip |
[FixYellow] skin_tokens.c add a preprocessor directive that actually works
Change-Id: I4345093be1d953e80f0043f6edd361517f74069b
-rw-r--r-- | apps/gui/skin_engine/skin_tokens.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c index c34a34a991..2351f638c8 100644 --- a/apps/gui/skin_engine/skin_tokens.c +++ b/apps/gui/skin_engine/skin_tokens.c @@ -592,7 +592,7 @@ static const char * NOINLINE try_id3_token(struct wps_token *token, int offset, int numeric_ret = -1; const char *numeric_buf = buf; -#ifdef sizeof(mp3entry) <= 2048 +#if ID3V2_BUF_SIZE <= 900 struct mp3entry tempid3, *id3; #else static struct mp3entry tempid3, *id3; |