Skip to content

Commit

Permalink
(hashmap) fixed prc117f hash key capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
JonBons committed Apr 7, 2024
1 parent c13a011 commit 3fdabd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/sys_prc117f/radio/fnc_getChannelData.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ switch _channelType do {
HASH_SET(_return,"TEK",HASH_GET(_channel,"tek"));
HASH_SET(_return,"trafficRate",HASH_GET(_channel,"trafficRate"));
HASH_SET(_return,"syncLength",HASH_GET(_channel,"phase"));
HASH_SET(_return,"optioncode",HASH_GET(_channel,"optioncode"));
HASH_SET(_return,"optionCode",HASH_GET(_channel,"optionCode"));
HASH_SET(_return,"active",HASH_GET(_channel,"active"));
HASH_SET(_return,"rxonly",HASH_GET(_channel,"rxonly"));
HASH_SET(_return,"rxOnly",HASH_GET(_channel,"rxOnly"));
HASH_SET(_return,"squelch",HASH_GET(_channel,"squelch"));
HASH_SET(_return,"channelmode",HASH_GET(_channel,"channelmode"));
HASH_SET(_return,"channelMode",HASH_GET(_channel,"channelMode"));
HASH_SET(_return,"deviation",HASH_GET(_channel,"deviation"));
HASH_SET(_reutrn,"name",HASH_GET(_channel,"name"));
};
Expand Down

0 comments on commit 3fdabd5

Please sign in to comment.