Skip to content

Commit

Permalink
Another SDL3 rename (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerGlaiel authored Jul 13, 2024
1 parent db72518 commit 73d0ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FAudio_platform_sdl3.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ uint8_t* FAudio_memptr(FAudioIOStream *io, size_t offset)
{
SDL_PropertiesID props = SDL_GetIOProperties((SDL_IOStream*) io->data);
FAudio_assert(SDL_HasProperty(props, SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER));
return (uint8_t*) SDL_GetProperty(props, SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER, NULL);
return (uint8_t*) SDL_GetPointerProperty(props, SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER, NULL);
}

void FAudio_close(FAudioIOStream *io)
Expand Down

0 comments on commit 73d0ba8

Please sign in to comment.