Fix typos leading to state not being saved

This commit is contained in:
falkTX
2014-10-24 02:34:16 +01:00
parent f244f3b09b
commit f7ae7079c9
2 changed files with 2 additions and 2 deletions

2
drmr.c
View File

@@ -543,7 +543,7 @@ restore_state(LV2_Handle instance,
static const void* extension_data(const char* uri) {
static const LV2_State_Interface state_iface = { save_state, restore_state };
if (!strcmp(uri, LV2_STATE_URI "#Interface")) return &state_iface;
if (!strcmp(uri, LV2_STATE__interface)) return &state_iface;
return NULL;
}