mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
ChunkFile has allowed me to accidentally "Do" a non-POD for the last time!
This commit is contained in:
@ -133,7 +133,7 @@ bool WbfsFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
||||
{
|
||||
while(nbytes)
|
||||
{
|
||||
u64 read_size;
|
||||
u64 read_size = 0;
|
||||
File::IOFile& data_file = SeekToCluster(offset, &read_size);
|
||||
read_size = (read_size > nbytes) ? nbytes : read_size;
|
||||
|
||||
|
Reference in New Issue
Block a user