build: Clear out remaining compile warnings. (#6662)

This commit is contained in:
Steveice10
2023-07-04 21:00:24 -07:00
committed by GitHub
parent 2126c240cd
commit 13a8969824
26 changed files with 117 additions and 103 deletions

View File

@ -392,7 +392,7 @@ void DspLle::SetSemaphore(u16 semaphore_value) {
impl->teakra.SetSemaphore(semaphore_value);
}
std::vector<u8> DspLle::PipeRead(DspPipe pipe_number, u32 length) {
std::vector<u8> DspLle::PipeRead(DspPipe pipe_number, std::size_t length) {
return impl->ReadPipe(static_cast<u8>(pipe_number), static_cast<u16>(length));
}