Don't crash on really long release notes

Also wrap URLs and such and don't scroll past the end
This commit is contained in:
Pk11
2022-03-04 19:43:51 -06:00
committed by Dark98
parent 0a2848158c
commit dd35c87590
3 changed files with 66 additions and 4 deletions
+4 -1
View File
@@ -97,7 +97,10 @@ void StoreUtils::EntryHandle(bool &showMark, bool &fetch, bool &sFetch, int &mod
}
if ((hDown & KEY_X) || (hDown & KEY_TOUCH && touching(touch, notes))) {
if (entry->GetReleaseNotes() != "") mode = 7;
if (entry->GetReleaseNotes() != "") {
ProcessReleaseNotes(entry->GetReleaseNotes());
mode = 7;
}
}
}