Forráskód Böngészése

Sync SDL3 wiki -> header

[ci skip]
SDL Wiki Bot 3 hónapja
szülő
commit
e054f3c085
1 módosított fájl, 5 hozzáadás és 5 törlés
  1. 5 5
      include/SDL3/SDL_mouse.h

+ 5 - 5
include/SDL3/SDL_mouse.h

@@ -43,15 +43,15 @@
  * or perhaps just a specific system cursor from SDL_CreateSystemCursor().
  *
  * SDL can, on many platforms, differentiate between multiple connected mice,
- * allowing for interesting input scenarios and multiplayer games. They can
- * be enumerated with SDL_GetMice(), and SDL will send SDL_EVENT_MOUSE_ADDED
- * and SDL_EVENT_MOUSE_REMOVED events as they are connected and unplugged.
+ * allowing for interesting input scenarios and multiplayer games. They can be
+ * enumerated with SDL_GetMice(), and SDL will send SDL_EVENT_MOUSE_ADDED and
+ * SDL_EVENT_MOUSE_REMOVED events as they are connected and unplugged.
  *
  * Since many apps only care about basic mouse input, SDL offers a virtual
  * mouse device for touch and pen input, which often can make a desktop
  * application work on a touchscreen phone without any code changes. Apps that
- * care about touch/pen separately from mouse input should filter out
- * events with a `which` field of SDL_TOUCH_MOUSEID/SDL_PEN_MOUSEID.
+ * care about touch/pen separately from mouse input should filter out events
+ * with a `which` field of SDL_TOUCH_MOUSEID/SDL_PEN_MOUSEID.
  */
 
 #ifndef SDL_mouse_h_