aboutsummaryrefslogtreecommitdiff
path: root/platform/desktop
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-28 21:00:22 -0400
committeriamcheeseman <[email protected]>2026-05-28 21:00:22 -0400
commit5bffcafe09ec26ca501401fc1fe327ecc68fd4ca (patch)
treec8ec83e017b581f774051d999a862f7ee7eb7820 /platform/desktop
parent3d80fc2bcc2888ae5ce2d1334eb9ec30fac544ea (diff)
remove trailing whitespace
Diffstat (limited to 'platform/desktop')
-rw-r--r--platform/desktop/desktop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/desktop/desktop.c b/platform/desktop/desktop.c
index b156e56..8de6d8d 100644
--- a/platform/desktop/desktop.c
+++ b/platform/desktop/desktop.c
@@ -273,13 +273,13 @@ bool ty_platform_is_button_down(ty_Button btn)
case TY_BTN_DB_CTRL: res = glfwGetKey(p.win, GLFW_KEY_LEFT_CONTROL); break;
case TY_BTN_DB_SHIFT: res = glfwGetKey(p.win, GLFW_KEY_LEFT_SHIFT); break;
case TY_BTN_DB_BKSPACE: res = glfwGetKey(p.win, GLFW_KEY_BACKSPACE); break;
- case TY_BTN_DB_LMB:
+ case TY_BTN_DB_LMB:
res = glfwGetMouseButton(p.win, GLFW_MOUSE_BUTTON_LEFT);
break;
- case TY_BTN_DB_RMB:
+ case TY_BTN_DB_RMB:
res = glfwGetMouseButton(p.win, GLFW_MOUSE_BUTTON_RIGHT);
break;
- case TY_BTN_DB_MMB:
+ case TY_BTN_DB_MMB:
res = glfwGetMouseButton(p.win, GLFW_MOUSE_BUTTON_MIDDLE);
break;
}