[jak2] workaround for cutscene playing (#2131)

This commit is contained in:
water111
2023-01-16 13:37:29 -05:00
committed by GitHub
parent 7fdef1c509
commit 7d7625f4f8
76 changed files with 4704 additions and 1299 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ std::string trim_newline_indents(const std::string& s) {
std::string join(const std::vector<std::string>& strs, const std::string& join_with) {
std::string out;
for (int i = 0; i < strs.size(); i++) {
for (size_t i = 0; i < strs.size(); i++) {
out += strs.at(i);
if (i < strs.size() - 1) {
out += join_with;