mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-07 00:39:26 +00:00
Fixes to CIA building
1. Optimizes ticket finding 2. Fixes progress reporting overshoot 3. Use u64 for size in general 4. Various other fixes and cleanups
This commit is contained in:
@@ -31,16 +31,15 @@ public:
|
||||
signals:
|
||||
/**
|
||||
* Called when progress is updated on the current content.
|
||||
* @param total_size_imported Total imported size taking all previous contents into
|
||||
* @param current_imported_size Imported size of the current content.
|
||||
* @param total_imported_size Total imported size taking all previous contents into
|
||||
* consideration.
|
||||
* @param current_size_imported Imported size of the current content.
|
||||
* @param eta ETA in seconds, 0 when not determined.
|
||||
*/
|
||||
void ProgressUpdated(u64 total_size_imported, u64 current_size_imported, int eta);
|
||||
void ProgressUpdated(u64 current_imported_size, u64 total_imported_size, int eta);
|
||||
|
||||
/// Dumping of a content has been finished, go on to the next. Called at start as well.
|
||||
void NextContent(u64 size_imported, u64 count, const Core::ContentSpecifier& next_content,
|
||||
int eta);
|
||||
void NextContent(std::size_t count, const Core::ContentSpecifier& next_content, int eta);
|
||||
|
||||
void Completed();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user