diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-10-19 22:13:51 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-10-19 22:13:51 +0200 |
commit | 2d4457a5ee926eca221102ee70f118b305ea2670 (patch) | |
tree | e186cf369f30c18c7fb60660f79bc51bc37f4f8f /src | |
parent | 9da3c2188060dc982412d7a6e1cd2051b9ddb6a6 (diff) |
poll event change name
Diffstat (limited to 'src')
-rw-r--r-- | src/window/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window/window.c b/src/window/window.c index d81f98e..80c3ccf 100644 --- a/src/window/window.c +++ b/src/window/window.c @@ -132,7 +132,7 @@ void mgl_window_clear(mgl_window *self, mgl_color color) { context->gl.glClearColor((float)color.r / 255.0f, (float)color.g / 255.0f, (float)color.b / 255.0f, (float)color.a / 255.0f); } -bool mgl_window_events_poll(mgl_window *self, mgl_event *event) { +bool mgl_window_poll_event(mgl_window *self, mgl_event *event) { /* TODO: Use |event| */ Display *display = mgl_get_context()->connection; |