diff options
Diffstat (limited to 'libopna/opnadrum.h')
-rw-r--r-- | libopna/opnadrum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libopna/opnadrum.h b/libopna/opnadrum.h index 7260995..df42927 100644 --- a/libopna/opnadrum.h +++ b/libopna/opnadrum.h @@ -3,7 +3,9 @@ #include <stdint.h> #include <stdbool.h> +#ifdef LIBOPNA_ENABLE_LEVELDATA #include "leveldata/leveldata.h" +#endif #ifdef __cplusplus extern "C" { @@ -33,7 +35,9 @@ struct opna_drum { unsigned level; bool left; bool right; +#ifdef LIBOPNA_ENABLE_LEVELDATA struct leveldata leveldata; +#endif } drums[6]; unsigned total_level; int16_t rom_bd[OPNA_ROM_BD_SIZE]; |