diff --git a/otherarch/sdcpp/sdtype_adapter.cpp b/otherarch/sdcpp/sdtype_adapter.cpp index 7fc878ee7..61d29531c 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -589,8 +589,8 @@ std::string clean_input_prompt(const std::string& input) { result.push_back(ch); } } - //limit to max 800 chars - result = result.substr(0, 800); + //limit to max 2048 chars + result = result.substr(0, 2048); return result; }