mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-29 22:48:30 +00:00
MS_ADPCM_Decode: fix assigning an array to a pointer (lose '&').
This commit is contained in:
@@ -691,7 +691,7 @@ MS_ADPCM_Decode(WaveFile *file, Uint8 **audio_buf, Uint32 *audio_len)
|
||||
return SDL_OutOfMemory();
|
||||
}
|
||||
|
||||
state.cstate = &cstate;
|
||||
state.cstate = cstate;
|
||||
|
||||
/* Decode block by block. A truncated block will stop the decoding. */
|
||||
bytesleft = state.input.size - state.input.pos;
|
||||
|
Reference in New Issue
Block a user