Add progress bar

This commit is contained in:
PsyK0p4T 2023-01-16 01:12:30 +01:00 committed by GitHub
parent 978fc80287
commit ae55f07b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -434,6 +434,8 @@ void readROM_VB() {
}
word d = 0;
uint32_t progress = 0;
draw_progressbar(0, cartSize);
// HYPER FIGHTING FIX
// VIRTUAL BOY ADDRESSING IS TOP DOWN
// ONLY FOR HYPER FIGHTING PLUGIN WITH ALL ADDRESS LINES CONNECTED
@ -450,6 +452,8 @@ void readROM_VB() {
}
myFile.write(sdBuffer, 512);
d = 0;
progress += 512;
draw_progressbar(progress, cartSize);
}
} else {
for (unsigned long currBuffer = 0; currBuffer < cartSize / 2; currBuffer += 256) {
@ -462,6 +466,8 @@ void readROM_VB() {
}
myFile.write(sdBuffer, 512);
d = 0;
progress += 512;
draw_progressbar(progress, cartSize);
}
}
myFile.close();