Skip to content

Commit

Permalink
Increae buffer size for title override mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Huntereb committed Jan 10, 2020
1 parent b1c0f8b commit 2bcdb1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ui/mainPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace inst::ui {
}
} else if (!appletFinished) {
inst::ui::appletFinished = true;
tin::data::NUM_BUFFER_SEGMENTS = 8;
tin::data::NUM_BUFFER_SEGMENTS = 128;

This comment has been minimized.

Copy link
@Huntereb

Huntereb Jan 13, 2020

Author Owner
  1. Downloads data faster for 1GB because it doesn't have to wait for processed chunks (NSZ decompression), saving some time at least until it catches up to the decompression process 2. Faster transfers from not waiting as long means less chance of USB transfer issues 3. Why not? Unused ram is wasted ram.
}
if (!updateFinished && (!inst::config::autoUpdate || inst::util::getIPAddress() == "1.0.0.127")) updateFinished = true;
if (!updateFinished && menuLoaded && inst::config::updateInfo.size()) {
Expand Down

0 comments on commit 2bcdb1d

Please sign in to comment.