Skip to content

Commit

Permalink
Implementing key lookup table in platform file. Freeing some reply_t*…
Browse files Browse the repository at this point in the history
…. This should solve issue travisvroman#53
  • Loading branch information
S-Marais committed Jun 4, 2022
1 parent ca2bcab commit 81eabb5
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 316 deletions.
6 changes: 1 addition & 5 deletions engine/src/core/application.c
Original file line number Diff line number Diff line change
Expand Up @@ -504,13 +504,9 @@ b8 application_run() {
event_unregister(EVENT_CODE_APPLICATION_QUIT, 0, application_on_event);
event_unregister(EVENT_CODE_KEY_PRESSED, 0, application_on_key);
event_unregister(EVENT_CODE_KEY_RELEASED, 0, application_on_key);
<<<<<<< HEAD
event_unregister(EVENT_CODE_RESIZED, 0, application_on_resized);
=======
// TODO: temp
event_unregister(EVENT_CODE_DEBUG0, 0, event_on_debug_event);
// TODO: end temp
>>>>>>> upstream/main

input_system_shutdown(app_state->input_system_state);

Expand Down Expand Up @@ -610,4 +606,4 @@ b8 application_on_resized(u16 code, void* sender, void* listener_inst, event_con

// Event purposely not handled to allow other listeners to get this.
return false;
}
}
Loading

0 comments on commit 81eabb5

Please sign in to comment.