Closed madebr closed 5 months ago
There exists SDL_ReadU8, but no SDL_ReadS8.
SDL_ReadU8
SDL_ReadS8
https://github.com/libsdl-org/SDL/blob/96bb06d9c703061db8e7b156515dfa37af6720d7/include/SDL3/SDL_iostream.h#L626
Would a SDL_ReadS8 make sense?
Or is one expected to use SDL_ReadIO to read a single character/signed 8-byte integer?
SDL_ReadIO
Sure, it makes sense to add that for completeness.
There exists
SDL_ReadU8
, but noSDL_ReadS8
.https://github.com/libsdl-org/SDL/blob/96bb06d9c703061db8e7b156515dfa37af6720d7/include/SDL3/SDL_iostream.h#L626
Would a
SDL_ReadS8
make sense?Or is one expected to use
SDL_ReadIO
to read a single character/signed 8-byte integer?