From 757ba2f16dd67d44a52a8deeab95a1919080d30f Mon Sep 17 00:00:00 2001 From: salvacam Date: Sun, 10 Oct 2021 20:00:53 +0200 Subject: [PATCH] miyoo ifdef fix --- dingux/dingux_utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dingux/dingux_utils.c b/dingux/dingux_utils.c index bb4eac076a..ec4eca19f1 100644 --- a/dingux/dingux_utils.c +++ b/dingux/dingux_utils.c @@ -18,7 +18,7 @@ #include #include #include -#if defined(RS90) || defined(MIYOO) +#if defined(RS90) #include #endif @@ -317,14 +317,14 @@ int dingux_get_battery_level(void) void dingux_get_base_path(char *path, size_t len) { const char *home = NULL; -#if defined(RS90) || defined(MIYOO) +#if defined(RS90) struct string_list *dir_list = NULL; #endif if (!path || (len < 1)) return; -#if defined(RS90) || defined(MIYOO) +#if defined(RS90) /* The RS-90 home directory is located on the * device's internal storage. This has limited * space (a total of only 256MB), such that it