Skip to content

Commit

Permalink
Fixed|Audio: Adding audio interfaces on the stack
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 13, 2012
1 parent efd10a0 commit 8abc57e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions doomsday/engine/portable/src/audiodriver.c
Expand Up @@ -320,7 +320,7 @@ static void appendInterface(audiointerface_t** pos, audiointerfacetype_t type, v
{
(*pos)->type = type;
(*pos)->i.any = ptr;
pos++;
(*pos)++;
}

/**
Expand All @@ -331,7 +331,6 @@ static void appendInterface(audiointerface_t** pos, audiointerfacetype_t type, v
static void selectInterfaces(audiodriverid_t defaultDriverId)
{
driver_t* defaultDriver = &drivers[defaultDriverId];
driver_t* musicDriver = 0;
audiodriverid_t drvId;
audiointerface_t* pos = activeInterfaces;
int p;
Expand Down

0 comments on commit 8abc57e

Please sign in to comment.