mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix a weird naming issue that caused uninitialized error (weird mostly because it snuck past me)
This commit is contained in:
parent
8871765491
commit
cc6ec57772
1 changed files with 2 additions and 3 deletions
|
@ -124,10 +124,9 @@ midi_stream_close (sfx_t *sfx)
|
|||
*/
|
||||
|
||||
static sfx_t *
|
||||
midi_stream_open (sfx_t *_sfx)
|
||||
midi_stream_open (sfx_t *sfx)
|
||||
{
|
||||
sfx_t *sfx;
|
||||
sfxstream_t *stream = (sfxstream_t *) _sfx->data;
|
||||
sfxstream_t *stream = (sfxstream_t *) sfx->data;
|
||||
QFile *file;
|
||||
midi *handle;
|
||||
unsigned char *local_buffer;
|
||||
|
|
Loading…
Reference in a new issue