@@ -252,8 +252,7 @@ static const int CursorsLUT[] = {
252
252
//SDL_SYSTEM_CURSOR_WAITARROW, // No equivalent implemented on MouseCursor enum on raylib.h
253
253
};
254
254
255
-
256
- // SDL3 Migration Layer made to avoid `ifdefs` inside functions when we can.
255
+ // SDL3 Migration Layer made to avoid 'ifdefs' inside functions when we can.
257
256
#if defined(PLATFORM_DESKTOP_SDL3 )
258
257
259
258
// SDL3 Migration:
@@ -304,13 +303,13 @@ int SDL_GetNumVideoDisplays(void)
304
303
int monitorCount = 0 ;
305
304
SDL_DisplayID * displays = SDL_GetDisplays (& monitorCount );
306
305
307
- // Safe because If ` mem` is NULL, SDL_free does nothing
306
+ // Safe because If ' mem' is NULL, SDL_free does nothing
308
307
SDL_free (displays );
309
308
310
309
return monitorCount ;
311
310
}
312
311
313
- // SLD3 Migration: To emulate SDL2 this function should return ` SDL_DISABLE` or ` SDL_ENABLE`
312
+ // SLD3 Migration: To emulate SDL2 this function should return ' SDL_DISABLE' or ' SDL_ENABLE'
314
313
// representing the *processing state* of the event before this function makes any changes to it
315
314
Uint8 SDL_EventState (Uint32 type , int state )
316
315
{
@@ -581,7 +580,7 @@ void SetWindowState(unsigned int flags)
581
580
if (flags & FLAG_WINDOW_UNFOCUSED )
582
581
{
583
582
// NOTE: To be able to implement this part it seems that we should
584
- // do it ourselves, via `Windows.h`, ` X11/Xlib.h` or even ` Cocoa.h`
583
+ // do it ourselves, via 'windows.h', ' X11/Xlib.h' or even ' Cocoa.h'
585
584
TRACELOG (LOG_WARNING , "SetWindowState() - FLAG_WINDOW_UNFOCUSED is not supported on PLATFORM_DESKTOP_SDL" );
586
585
}
587
586
if (flags & FLAG_WINDOW_TOPMOST )
@@ -1169,13 +1168,13 @@ Image GetClipboardImage(void)
1169
1168
image = LoadImageFromMemory (imageExtensions [i ], fileData , dataSize );
1170
1169
if (IsImageValid (image ))
1171
1170
{
1172
- TRACELOG (LOG_INFO , "Clipboard image : Got image from clipboard as a `%s` successfully " , imageExtensions [i ]);
1171
+ TRACELOG (LOG_INFO , "Clipboard: Got image from clipboard successfully: %s " , imageExtensions [i ]);
1173
1172
return image ;
1174
1173
}
1175
1174
}
1176
1175
}
1177
1176
1178
- if (!IsImageValid (image )) TRACELOG (LOG_WARNING , "Clipboard image : Couldn't get clipboard data. Error : %s" , SDL_GetError ());
1177
+ if (!IsImageValid (image )) TRACELOG (LOG_WARNING , "Clipboard: Couldn't get clipboard data. ERROR : %s" , SDL_GetError ());
1179
1178
#endif
1180
1179
1181
1180
return image ;
0 commit comments