diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-04 00:48:23 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-04 00:48:23 +0300 |
commit | e6d67761951b7d0c61adba0a3420379c04864ff3 (patch) | |
tree | 3f307d1079e84af1f21d9b1389843b4f91a77319 /src/wopl | |
parent | 90f8b60438d59a1871a5ebf80a279c0eeea7a1a7 (diff) | |
download | libADLMIDI-e6d67761951b7d0c61adba0a3420379c04864ff3.tar.gz libADLMIDI-e6d67761951b7d0c61adba0a3420379c04864ff3.tar.bz2 libADLMIDI-e6d67761951b7d0c61adba0a3420379c04864ff3.zip |
Another typo fixes, begin to document all public functions
Diffstat (limited to 'src/wopl')
-rw-r--r-- | src/wopl/wopl_file.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/wopl/wopl_file.h b/src/wopl/wopl_file.h index 6fd36f8..ac89360 100644 --- a/src/wopl/wopl_file.h +++ b/src/wopl/wopl_file.h @@ -89,9 +89,12 @@ typedef enum WOPL_RhythmMode /* RythmMode: TomTom */ WOPL_RM_TomTom = 0x18, /* RythmMode: Cymbell */ - WOPL_RM_Cymball = 0x20, + WOPL_RM_Cymbal = 0x20, /* RythmMode: HiHat */ - WOPL_RM_HiHat = 0x28 + WOPL_RM_HiHat = 0x28, + + /* DEPRECATED: It has typo. Don't use it! */ + WOPL_RM_Cymball = WOPL_RM_Cymbal } WOPL_RhythmMode; /* DEPRECATED: It has typo. Don't use it! */ |