diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-07-19 21:15:27 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-07-19 22:04:00 -0400 |
commit | 82cf84562544f901254fc5d42ab5e7dab7b66388 (patch) | |
tree | 6eaa862389170cff74e4feed9e14a351eca9e088 | |
parent | 46280095033d4f561a6c1d3fcca871ac706073e8 (diff) | |
download | rockbox-82cf845625.tar.gz rockbox-82cf845625.zip |
simulator supports only one logical volume per drive
Change-Id: I8f32743c98771ca38c04d42bf6b2dd4768cfedad
-rw-r--r-- | firmware/export/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 5e5425a697..84b43c69a5 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -897,8 +897,8 @@ Lyre prototype 1 */ #undef HAVE_MULTIVOLUME #endif -/* Explicit HAVE_MULTIVOLUME in the config file. Allow the maximum number */ -#ifdef HAVE_MULTIVOLUME +/* Number of volumes per drive */ +#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) #define NUM_VOLUMES_PER_DRIVE 4 #else #define NUM_VOLUMES_PER_DRIVE 1 |