mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-13 18:30:44 +00:00
scsicdrom: Fix compiler warning.
This commit is contained in:
parent
d3c913e384
commit
4be6bad526
@ -381,7 +381,7 @@ void ScsiCdrom::read_capacity_10()
|
||||
return;
|
||||
}
|
||||
|
||||
int last_lba = this->size_blocks - 1;
|
||||
int last_lba = (int)this->size_blocks - 1;
|
||||
|
||||
WRITE_DWORD_BE_A(&this->data_buf[0], last_lba);
|
||||
WRITE_DWORD_BE_A(&this->data_buf[4], this->block_size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user