@@ -236,13 +236,13 @@ void fossil_io_mouse_poll_events(void) {
236
236
237
237
void fossil_io_mouse_init (void ) {
238
238
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" );
240
240
}
241
241
242
242
void fossil_io_mouse_shutdown (void ) {
243
243
size_t released = mouse_manager .count ;
244
244
memset (& mouse_manager , 0 , sizeof (mouse_manager ));
245
- printf ("[mouse] Shutdown: %zu bindings released\n" , released );
245
+ printf ("[mouse] Shutdown: bindings released\n" );
246
246
}
247
247
248
248
// TOUCH
@@ -302,11 +302,11 @@ void fossil_io_touch_poll_events(void) {
302
302
303
303
void fossil_io_touch_init (void ) {
304
304
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" );
306
306
}
307
307
308
308
void fossil_io_touch_shutdown (void ) {
309
309
size_t released = touch_manager .count ;
310
310
memset (& touch_manager , 0 , sizeof (touch_manager ));
311
- printf ("[touch] Shutdown: %zu bindings released\n" , released );
311
+ printf ("[touch] Shutdown: bindings released\n" );
312
312
}
0 commit comments