Begin midi engine

This commit is contained in:
2026-02-25 12:16:31 -05:00
parent 789e2b678b
commit 6656b6d0b2
7 changed files with 118 additions and 18 deletions

View File

@@ -13,6 +13,7 @@ enum MenuCmd {
MENU_VIEW_PROPERTIES,
MENU_VIEW_LOG,
MENU_VIEW_DEMO,
MENU_VIEW_MIDI_DEVICES,
};
static void setup_menus(PlatformWindow *window) {
@@ -35,7 +36,8 @@ static void setup_menus(PlatformWindow *window) {
{ "Properties", MENU_VIEW_PROPERTIES },
{ "Log", MENU_VIEW_LOG },
{ nullptr, 0 },
{ "Demo", MENU_VIEW_DEMO },
{ "Demo", MENU_VIEW_DEMO },
{ "MIDI Devices", MENU_VIEW_MIDI_DEVICES },
};
PlatformMenu menus[] = {