mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-24 19:27:27 +00:00
FifoDataFile: Convert FifoFrameInfo's fifoData member into a vector
This commit is contained in:
parent
437b1294bb
commit
396ae89e5c
11 changed files with 27 additions and 36 deletions
|
@ -928,7 +928,7 @@ wxString FifoPlayerDlg::CreateRecordingFifoSizeLabel() const
|
|||
{
|
||||
size_t fifoBytes = 0;
|
||||
for (size_t i = 0; i < file->GetFrameCount(); ++i)
|
||||
fifoBytes += file->GetFrame(i).fifoDataSize;
|
||||
fifoBytes += file->GetFrame(i).fifoData.size();
|
||||
|
||||
return wxString::Format(_("%zu FIFO bytes"), fifoBytes);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue