Application selection at build time
Fix DisplayAppRecovery so it builds with -std=c++20.
This commit is contained in:

committed by
JF

parent
63e0c4f4ef
commit
02af09d943
@@ -141,7 +141,7 @@ void Gfx::SetBackgroundColor(uint16_t color) {
|
||||
bool Gfx::GetNextBuffer(uint8_t** data, size_t& size) {
|
||||
if (!state.busy)
|
||||
return false;
|
||||
state.remainingIterations--;
|
||||
state.remainingIterations = state.remainingIterations-1;
|
||||
if (state.remainingIterations == 0) {
|
||||
state.busy = false;
|
||||
NotifyEndOfTransfer(state.taskToNotify);
|
||||
@@ -170,7 +170,7 @@ bool Gfx::GetNextBuffer(uint8_t** data, size_t& size) {
|
||||
size = bytes_in_line * 8 * 2;
|
||||
}
|
||||
|
||||
state.currentIteration++;
|
||||
state.currentIteration = state.currentIteration + 1;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user