Skip to content

Commit

Permalink
Fix typos leading to state not being saved
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Oct 24, 2014
1 parent f244f3b commit f7ae707
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drmr.c
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion drmr.ttl
Expand Up @@ -19,7 +19,7 @@
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
lv2:requiredFeature urid:map ;
ui:ui <http://github.com/nicklan/drmr#ui> ;
lv2:extensionData <http://lv2plug.in/ns/ext/state#Interface> ;
lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
lv2:port [
a lv2:InputPort , atom:AtomPort;
atom:bufferType atom:Sequence ;
Expand Down

0 comments on commit f7ae707

Please sign in to comment.