mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
FifoDataFile: Convert FifoFrameInfo's fifoData member into a vector
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user