mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-02 16:49:05 +00:00
Display Loading Screenshot... if fetching.
ALSO: Add Stack Theme and increase the depth of the grid selector from 2 to 3.
This commit is contained in:
@@ -139,7 +139,7 @@ extern bool QueueRuns;
|
||||
extern std::deque<std::unique_ptr<Queue>> queueEntries;
|
||||
|
||||
void Animation::DrawQueue(int x, int y) {
|
||||
GFX::DrawSprite(sprites_queue0_idx + frame, x, y);
|
||||
GFX::DrawIcon(sprites_queue0_idx + frame, x, y);
|
||||
Gui::DrawStringCentered(x + 20 - 160, y + 11, 0.6f, GFX::Themes[GFX::SelectedTheme].SideBarIconColor, QueueSystem::Wait ? "!" : std::to_string(queueEntries.size()), 0, 0, font);
|
||||
}
|
||||
void Animation::QueueAnimHandle() {
|
||||
|
||||
@@ -425,12 +425,8 @@ Result downloadFromRelease(const std::string &url, const std::string &asset, con
|
||||
result_sz = 0;
|
||||
result_written = 0;
|
||||
|
||||
if (assetUrl.empty() || ret != 0) {
|
||||
ret = DL_ERROR_GIT;
|
||||
|
||||
} else {
|
||||
ret = downloadToFile(assetUrl, path);
|
||||
}
|
||||
if (assetUrl.empty() || ret != 0) ret = DL_ERROR_GIT;
|
||||
else ret = downloadToFile(assetUrl, path);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user