Archived
1
0

Fixing typo on range check for MDErgo1

This commit is contained in:
Jacob Alexander 2015-08-16 15:53:07 -07:00
parent 398018ecf8
commit 79ee501e03

View File

@ -470,7 +470,7 @@ inline void Macro_interconnectAdd( void *trigger_ptr )
}
// Check if ScanCode is out of range
if ( scanCode > MaxScanCode )
if ( trigger->scanCode > MaxScanCode )
{
warn_msg("ScanCode is out of range/not defined - ");
error = 1;