|
From: Tapio V. <aa...@us...> - 2010-09-15 19:55:08
|
Module: performous
Branch: master
Commit: db94d0bf19fe8e2735864f42b7c07e4921303cd1
Author: Tapio Vierros <tap...@gm...>
Date: Wed Sep 15 22:54:24 2010 +0300
Fix a missing ) in audio devices screen.
---
game/libda/portaudio.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/game/libda/portaudio.hpp b/game/libda/portaudio.hpp
index c149203..16c7b83 100644
--- a/game/libda/portaudio.hpp
+++ b/game/libda/portaudio.hpp
@@ -37,8 +37,8 @@ namespace portaudio {
oss << name << " (";
if (in) oss << in << " in";
if (in && out) oss << ", ";
- if (out) oss << out << " out)";
- return oss.str();
+ if (out) oss << out << " out";
+ return oss.str() + ")";
}
std::string name;
unsigned int in, out;
|