Skip to content

Commit

Permalink
Fixed missing parentheses in dsOpenAL::DS_Init()
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed May 13, 2012
1 parent 4e744ec commit 977d404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/openal/src/driver_openal.cpp
Expand Up @@ -162,7 +162,7 @@ int DS_Init(void)
unitsPerMeter = 36;

// Everything is OK.
DSOPENAL_TRACE("DS_Init: OpenAL initialized%s." << hasEAX? " (EAX 2.0 available)" : "");
DSOPENAL_TRACE("DS_Init: OpenAL initialized%s." << (hasEAX? " (EAX 2.0 available)" : ""));
initOk = true;
return true;
}
Expand Down

0 comments on commit 977d404

Please sign in to comment.