mirror of
https://github.com/0ldsk00l/nestopia.git
synced 2025-04-02 10:31:51 -04:00
NstFds: Use dword for file size in log
This commit is contained in:
parent
cfb2ecaaa1
commit
3e20e91482
1 changed files with 2 additions and 2 deletions
|
@ -744,7 +744,7 @@ namespace Nes
|
|||
<< (i % 2 ? " Side B: " : " Side A: ")
|
||||
<< (disksize / SIZE_1K)
|
||||
<< "k in "
|
||||
<< data.files.size()
|
||||
<< static_cast<dword>(data.files.size())
|
||||
<< " files";
|
||||
|
||||
if (const uint raw = data.raw.size())
|
||||
|
@ -756,7 +756,7 @@ namespace Nes
|
|||
{
|
||||
log << "Fds: file: \"" << it->name
|
||||
<< "\", id: " << it->id
|
||||
<< ", size: " << it->data.size()
|
||||
<< ", size: " << static_cast<dword>(it->data.size())
|
||||
<< ", index: " << it->index
|
||||
<< ", address: " << Log::Hex( 16, it->address )
|
||||
<< ", type: "
|
||||
|
|
Loading…
Add table
Reference in a new issue