summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2019-08-08 17:02:27 -0400
committerSolomon Peachy <pizza@shaftnet.org>2019-08-08 23:04:11 +0200
commit7737327bfe244c06e08aafc6ee9e63d00597279b (patch)
treed0555e780c30aa04a92da4f37461eef0db97a845
parent5b23c9eb0a97534f0d0fc3aa0c1ad302199eb8dc (diff)
downloadrockbox-7737327bfe244c06e08aafc6ee9e63d00597279b.tar.gz
rockbox-7737327bfe244c06e08aafc6ee9e63d00597279b.zip
Fix mikmod plugin build on armv4 targets (broke in 5b23c9e)
Change-Id: I1c79fbe44c13396388c533c4664b4ce1db150ac9
-rw-r--r--apps/plugins/mikmod/mikmod_supp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mikmod/mikmod_supp.h b/apps/plugins/mikmod/mikmod_supp.h
index ad8aaafebc..c1a8681720 100644
--- a/apps/plugins/mikmod/mikmod_supp.h
+++ b/apps/plugins/mikmod/mikmod_supp.h
@@ -77,7 +77,7 @@ extern const struct plugin_api * rb;
77#if (ARM_ARCH >= 5) 77#if (ARM_ARCH >= 5)
78#define SAMPLE_RATE SAMPR_44 78#define SAMPLE_RATE SAMPR_44
79#else 79#else
80#define SAMPLE_RATE SAMPR_MIN_GE_22 80#define SAMPLE_RATE HW_SAMPR_MIN_GE_22
81#endif 81#endif
82 82
83#else /* !CPU_ARM */ 83#else /* !CPU_ARM */