diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-10-22 15:23:17 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-10-22 15:23:17 -0700 |
commit | 4733fc6f1e2ba1bcdaca9d7c1941b2abbf150b67 (patch) | |
tree | c6fa4ec6e601d180b21648ef251a039652755249 /utils/makemhr/makemhr.h | |
parent | a8a3acb6f66da6b630e6d71b77cdbc2b23a4f552 (diff) |
Fix azimuth limit
Diffstat (limited to 'utils/makemhr/makemhr.h')
-rw-r--r-- | utils/makemhr/makemhr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/makemhr/makemhr.h b/utils/makemhr/makemhr.h index 5125b43c..ba19efbe 100644 --- a/utils/makemhr/makemhr.h +++ b/utils/makemhr/makemhr.h @@ -9,15 +9,18 @@ #define MAX_PATH_LEN (256) // The limit to the number of 'distances' listed in the data set definition. +// Must be less than 256 #define MAX_FD_COUNT (16) // The limits to the number of 'elevations' listed in the data set definition. +// Must be less than 256. #define MIN_EV_COUNT (5) #define MAX_EV_COUNT (181) // The limits for each of the 'azimuths' listed in the data set definition. +// Must be less than 256. #define MIN_AZ_COUNT (1) -#define MAX_AZ_COUNT (360) +#define MAX_AZ_COUNT (255) // The limits for the 'distance' from source to listener for each field in // the definition file. |