aboutsummaryrefslogtreecommitdiffstats
path: root/core/ambdec.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-06-24 09:37:01 -0700
committerChris Robinson <[email protected]>2021-06-24 09:37:01 -0700
commit2186c890a3a22f9144f7bf8fa4737e13b3459d3e (patch)
tree526d50ebe9d814dd4ebf6833d4562e318f365529 /core/ambdec.cpp
parent41add6372870278434eeb789176431430ea7690a (diff)
Handle spaces in the ambdec description
Diffstat (limited to 'core/ambdec.cpp')
-rw-r--r--core/ambdec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ambdec.cpp b/core/ambdec.cpp
index 8655f4e7..30048051 100644
--- a/core/ambdec.cpp
+++ b/core/ambdec.cpp
@@ -198,7 +198,7 @@ al::optional<std::string> AmbDecConf::load(const char *fname) noexcept
return al::make_optional("Malformed line: "+buffer);
if(command == "/description")
- istr >> Description;
+ readline(istr, Description);
else if(command == "/version")
{
istr >> Version;