fix to prevent crash when non-APC Key was connected! silly typo

This commit is contained in:
Tristan Rowley
2020-01-19 15:06:49 +00:00
parent 72b7c292a6
commit df4f4166cc

View File

@@ -116,7 +116,7 @@ class Data(object):
print ("loaded custom midi mapping for %s" % custom_file)
else:
print ("loading default midi mapping for %s" % (device_name))
self.midi_mappings = self._read_json(self.MIDI_MAPPINGS_JSON)
self.midi_mappings = self._read_json(self.MIDI_MAPPING_JSON)
return self.midi_mappings
@staticmethod