From 103628985f5044bc10cf7b85c40106c0711157f0 Mon Sep 17 00:00:00 2001 From: Zachary Orr <516458+ZachOrr@users.noreply.github.com> Date: Sat, 14 May 2022 17:35:43 -0400 Subject: [PATCH] Fix typo of `GameEvent` to `PluginEvent` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de876c7..c7d631c 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The view_port is used to control the canvas (display) and userinput from the har ```c int32_t hello_world_app(void* p) { - osMessageQueueId_t event_queue = osMessageQueueNew(8, sizeof(GameEvent), NULL); + osMessageQueueId_t event_queue = osMessageQueueNew(8, sizeof(PluginEvent), NULL); // Set system callbacks ViewPort* view_port = view_port_alloc();