Skip to content

Commit 79c03ad

Browse files
Update keyboard.c
1 parent b976498 commit 79c03ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

code/logic/keyboard.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,13 +236,13 @@ void fossil_io_mouse_poll_events(void) {
236236

237237
void fossil_io_mouse_init(void) {
238238
memset(&mouse_manager, 0, sizeof(mouse_manager));
239-
printf("[mouse] Initialized: %zu bindings cleared\n", mouse_manager.count);
239+
printf("[mouse] Initialized: bindings cleared\n");
240240
}
241241

242242
void fossil_io_mouse_shutdown(void) {
243243
size_t released = mouse_manager.count;
244244
memset(&mouse_manager, 0, sizeof(mouse_manager));
245-
printf("[mouse] Shutdown: %zu bindings released\n", released);
245+
printf("[mouse] Shutdown: bindings released\n");
246246
}
247247

248248
// TOUCH
@@ -302,11 +302,11 @@ void fossil_io_touch_poll_events(void) {
302302

303303
void fossil_io_touch_init(void) {
304304
memset(&touch_manager, 0, sizeof(touch_manager));
305-
printf("[touch] Initialized: %zu bindings cleared\n", touch_manager.count);
305+
printf("[touch] Initialized: bindings cleared\n");
306306
}
307307

308308
void fossil_io_touch_shutdown(void) {
309309
size_t released = touch_manager.count;
310310
memset(&touch_manager, 0, sizeof(touch_manager));
311-
printf("[touch] Shutdown: %zu bindings released\n", released);
311+
printf("[touch] Shutdown: bindings released\n");
312312
}

0 commit comments

Comments
 (0)