mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-01 01:11:46 +00:00
commit
7c16c4dbb9
@ -113,7 +113,7 @@ bool ThreadManager::TeardownTask(Task *task, bool enqueue) {
|
||||
if (task->Type() == TaskType::CPU_COMPUTE) {
|
||||
global_->compute_queue.push_back(task);
|
||||
global_->compute_queue_size++;
|
||||
} else if (task->Type() == TaskType::CPU_COMPUTE) {
|
||||
} else if (task->Type() == TaskType::IO_BLOCKING) {
|
||||
global_->io_queue.push_back(task);
|
||||
global_->io_queue_size++;
|
||||
} else {
|
||||
|
@ -652,7 +652,7 @@ bool GameManager::InstallMemstickZip(struct zip *z, const Path &zipfile, const P
|
||||
if (fwrite(buffer, readSize, 1, outf) != 1)
|
||||
break;
|
||||
bytesCopied += readSize;
|
||||
installProgress_ = (float)allBytes / (float)allBytes;
|
||||
installProgress_ = (float)bytesCopied / (float)allBytes;
|
||||
}
|
||||
|
||||
delete[] buffer;
|
||||
|
@ -485,7 +485,7 @@ void ReportFinishScreen::ShowSuggestions() {
|
||||
const char *suggestion = nullptr;
|
||||
if (item == "Upgrade") {
|
||||
suggestion = rp->T("SuggestionUpgrade", "Upgrade to a newer PPSSPP build");
|
||||
} if (item == "Downgrade") {
|
||||
} else if (item == "Downgrade") {
|
||||
suggestion = rp->T("SuggestionDowngrade", "Downgrade to an older PPSSPP version (please report this bug)");
|
||||
} else if (item == "VerifyDisc") {
|
||||
suggestion = rp->T("SuggestionVerifyDisc", "Check your ISO is a good copy of your disc");
|
||||
|
Loading…
Reference in New Issue
Block a user