From 37e72bc7faf5c01f26f1cc718499c1fd798a4b9f Mon Sep 17 00:00:00 2001 From: Francois Best Date: Thu, 27 Oct 2016 08:02:34 +0200 Subject: [PATCH] Stay consistant in enums first letter case. --- src/midi_Defs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/midi_Defs.h b/src/midi_Defs.h index 654eb8d..2da35e5 100644 --- a/src/midi_Defs.h +++ b/src/midi_Defs.h @@ -88,10 +88,10 @@ struct Thru { enum Mode { - off = 0, ///< Thru disabled (nothing passes through). - full = 1, ///< Fully enabled Thru (every incoming message is sent back). - sameChannel = 2, ///< Only the messages on the Input Channel will be sent back. - differentChannel = 3, ///< All the messages but the ones on the Input Channel will be sent back. + Off = 0, ///< Thru disabled (nothing passes through). + Full = 1, ///< Fully enabled Thru (every incoming message is sent back). + SameChannel = 2, ///< Only the messages on the Input Channel will be sent back. + DifferentChannel = 3, ///< All the messages but the ones on the Input Channel will be sent back. }; };