Skip to content

Commit

Permalink
fix hint crash on windows (HarbourMasters#4227)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepper0ni authored Jul 9, 2024
1 parent 7a17fe2 commit 77770ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ CustomMessage CustomMessage::operator+(const CustomMessage& right) const {
newColors.push_back(color);
}
std::vector<bool> newCapital = capital;
newCapital.insert(capital.end(), right.GetCapital().begin(), right.GetCapital().end());
newCapital.insert(newCapital.end(), right.GetCapital().begin(), right.GetCapital().end());
return CustomMessage(messages[LANGUAGE_ENG] + right.GetEnglish(MF_RAW),
messages[LANGUAGE_GER] + right.GetGerman(MF_RAW),
messages[LANGUAGE_FRA] + right.GetFrench(MF_RAW),
Expand Down

0 comments on commit 77770ba

Please sign in to comment.