1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +00:00

Backends: SDL2, SDL3: maximum room for sanitizer to not be zealous.

This commit is contained in:
ocornut 2025-05-15 15:36:42 +02:00
parent b5a73033ab
commit 9361c35176
2 changed files with 2 additions and 2 deletions

View file

@ -136,7 +136,7 @@ struct ImGui_ImplSDL2_Data
SDL_Renderer* Renderer;
Uint64 Time;
char* ClipboardTextData;
char BackendPlatformName[40];
char BackendPlatformName[48];
// Mouse handling
Uint32 MouseWindowID;

View file

@ -102,7 +102,7 @@ struct ImGui_ImplSDL3_Data
SDL_Renderer* Renderer;
Uint64 Time;
char* ClipboardTextData;
char BackendPlatformName[40];
char BackendPlatformName[48];
// IME handling
SDL_Window* ImeWindow;