mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-03 00:39:02 +00:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user