Browse Source

Fix syntax when setting string.

tags/v1.3.0
Andrew Belt 4 years ago
parent
commit
09cb977c82
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/LibPDEngine.cpp

+ 1
- 1
src/LibPDEngine.cpp View File

@@ -215,7 +215,7 @@ void LibPDEngine::receiveLights(const char* s) {
//std::cout << v[1] << ", " << g_led_map[v[1]] << std::endl;
if (utility_is_valid && atoms.size() >= 3) {
g_utility[0] = atoms[1]; // display
g_utility[1] = {""};
g_utility[1] = "";
for (unsigned i = 0; i < atoms.size() - 2; i++) {
g_utility[1] += " " + atoms[i + 2]; // concatenate message
}


Loading…
Cancel
Save