File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 38
38
* at all).
39
39
*
40
40
* There is other forms of control, too: SDL_PeepEvents() has more
41
- * functionality at the cost of more complexity, and SDL_WaitEvent() can
42
- * block the process until something interesting happens, which might be
43
- * beneficial for certain types of programs on low-power hardware. One may
44
- * also call SDL_AddEventWatch() to set a callback when new events arrive.
41
+ * functionality at the cost of more complexity, and SDL_WaitEvent() can block
42
+ * the process until something interesting happens, which might be beneficial
43
+ * for certain types of programs on low-power hardware. One may also call
44
+ * SDL_AddEventWatch() to set a callback when new events arrive.
45
45
*
46
46
* The app is free to generate their own events, too: SDL_PushEvent allows the
47
47
* app to put events onto the queue for later retrieval; SDL_RegisterEvents
Original file line number Diff line number Diff line change @@ -317,8 +317,7 @@ extern SDL_DECLSPEC const char *SDLCALL SDL_GetTrayEntryLabel(SDL_TrayEntry *ent
317
317
* The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag.
318
318
*
319
319
* \param entry the entry to be updated.
320
- * \param checked true if the entry should be checked; false
321
- * otherwise.
320
+ * \param checked true if the entry should be checked; false otherwise.
322
321
*
323
322
* \since This function is available since SDL 3.1.8.
324
323
*
@@ -348,8 +347,7 @@ extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryChecked(SDL_TrayEntry *entry);
348
347
* Sets whether or not an entry is enabled.
349
348
*
350
349
* \param entry the entry to be updated.
351
- * \param enabled true if the entry should be enabled; false
352
- * otherwise.
350
+ * \param enabled true if the entry should be enabled; false otherwise.
353
351
*
354
352
* \since This function is available since SDL 3.1.8.
355
353
*
You can’t perform that action at this time.
0 commit comments