GCMemcard: Rename DEntry variables to match our naming conventions.

This commit is contained in:
Admiral H. Curtiss
2018-11-18 15:33:36 +01:00
parent c419dac1d8
commit 15f89d3e6f
4 changed files with 106 additions and 105 deletions

View File

@ -202,7 +202,7 @@ void GCMemcardManager::UpdateSlotTable(int slot)
DEntry d;
memcard->GetDEntry(file_index, d);
const auto speed = ((d.AnimSpeed[0] & 1) << 2) + (d.AnimSpeed[1] & 1);
const auto speed = ((d.m_animation_speed[0] & 1) << 2) + (d.m_animation_speed[1] & 1);
m_slot_active_icons[slot].push_back({speed, frames});