mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
Explicitly cast size_t to integer types
This commit is contained in:
parent
146e43b6ec
commit
d57124d075
14 changed files with 30 additions and 29 deletions
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
tar_object::tar_object(const fs::file& file, size_t offset)
|
||||
: m_file(file)
|
||||
, initial_offset(offset)
|
||||
, initial_offset(static_cast<int>(offset))
|
||||
{
|
||||
m_file.seek(initial_offset);
|
||||
largest_offset = initial_offset;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue