Skip to content

Commit

Permalink
Fix bad constant
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed Apr 23, 2024
1 parent d1274b8 commit 3cb07ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/clap/ext/draft/undo.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ enum clap_undo_delta_properties_flags {

// If set, then the delta will be re-usable in the future as long as the plugin is
// compatible with the given format_version.
CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTANT = 1 << 0,
CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTANT = 1 << 1,
};

typedef struct clap_undo_delta_properties {
Expand Down

0 comments on commit 3cb07ba

Please sign in to comment.