mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-02 16:49:05 +00:00
Fix scrolling in online UniStore list
This commit is contained in:
@@ -402,10 +402,10 @@ void QRCode::handler(std::string &result) {
|
|||||||
else result = std::string((char *)this->out.data(), this->out.size());
|
else result = std::string((char *)this->out.data(), this->out.size());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->selectedStore < this->sPos) this->sPos = this->selectedStore;
|
|
||||||
else if (this->selectedStore > this->sPos + 6 - 1) this->sPos = this->selectedStore - 6 + 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this->selectedStore < this->sPos) this->sPos = this->selectedStore;
|
||||||
|
else if (this->selectedStore >= this->sPos + 6 - 1) this->sPos = this->selectedStore - 6 + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user