1.1 --- a/src/audio/dsp/SDL_dspaudio.h Tue Oct 03 23:45:36 2006 +0000
1.2 +++ b/src/audio/dsp/SDL_dspaudio.h Wed Oct 04 06:00:10 2006 +0000
1.3 @@ -34,22 +34,11 @@
1.4 /* The file descriptor for the audio device */
1.5 int audio_fd;
1.6
1.7 - /* The parent process id, to detect when application quits */
1.8 - pid_t parent;
1.9 -
1.10 /* Raw mixing buffer */
1.11 Uint8 *mixbuf;
1.12 int mixlen;
1.13 };
1.14 #define FUDGE_TICKS 10 /* The scheduler overhead ticks per frame */
1.15
1.16 -/* Old variable names */
1.17 -#define audio_fd (this->hidden->audio_fd)
1.18 -#define parent (this->hidden->parent)
1.19 -#define mixbuf (this->hidden->mixbuf)
1.20 -#define mixlen (this->hidden->mixlen)
1.21 -#define frame_ticks (this->hidden->frame_ticks)
1.22 -#define next_frame (this->hidden->next_frame)
1.23 -
1.24 #endif /* _SDL_dspaudio_h */
1.25 /* vi: set ts=4 sw=4 expandtab: */