Skip to content

Commit eec691c

Browse files
committed
Fix build
1 parent 7be7665 commit eec691c

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/App/Osu/Changelog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ Changelog::Changelog() : ScreenBackable() {
3737
R"(- Fixed online beatmaps screen not always detecting installed beatmaps)",
3838
R"(- Fixed some 2B drawing issues (e.g. : https://osu.ppy.sh/beatmapsets/613791#osu/1294898 ))",
3939
R"(- Fixed some edge case map loading issues (e.g. : https://osu.ppy.sh/beatmapsets/1397110/#osu/2883509 ))",
40-
R"(- Improved songbrowser performance when song grouping is active)",
4140
R"(- Fixed beatmaps being stuck on old PPv2 versions (bumped database version))",
42-
R"(- Improved background star/PPv2 calc performance, and lowered memory usage)",
4341
R"(- Fixed slightly incorrect PP sorting in the user stats screen)",
42+
R"(- Improved songbrowser performance when song grouping is active)",
43+
R"(- Improved background star/PPv2 calc performance, and lowered memory usage)",
4444
};
4545
changelogs.push_back(v41_12);
4646

src/App/Osu/OsuDirectScreen.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -291,14 +291,7 @@ void OsuDirectScreen::mouse_update(bool* propagate_clicks) {
291291

292292
// Fetch next results page once we reached the bottom
293293
if(this->results->isAtBottom() && this->last_search_time + 1.0 < engine->getTime()) {
294-
static uSz pagination_request_id = 0;
295-
if(this->loading) {
296-
// We're already requesting the next page
297-
return;
298-
}
299-
300294
this->search(this->current_query, this->current_page + 1);
301-
pagination_request_id = this->request_id;
302295
}
303296
}
304297

0 commit comments

Comments
 (0)