From 2c272b175d0924ea452da3104ed6e153a45bfa42 Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 2 Apr 2019 23:53:14 -1100 Subject: [PATCH] Str --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 44e2c2dac..cca39ca38 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -405,7 +405,7 @@ void SplitStr(const std::string& strVal, std::vector outVals) while ( ss >> str ) { //outVals[numVals] = i; - outVals.push_back(i); + outVals.push_back(str); numVals += 1; while ( ss.peek() == ' ' )