Pre-purposed clean-up

This commit is contained in:
Uleat
2015-02-14 16:36:30 -05:00
parent b48a712887
commit f1a25da065
20 changed files with 697 additions and 466 deletions
+9 -9
View File
@@ -2290,15 +2290,15 @@ namespace RoF
for (uint32 r = 0; r < EmuConstants::BANDOLIERS_COUNT; r++)
{
outapp->WriteString(emu->bandoliers[r].name);
outapp->WriteString(emu->bandoliers[r].Name);
for (uint32 j = 0; j < EmuConstants::BANDOLIER_SIZE; ++j)
{
outapp->WriteString(emu->bandoliers[r].items[j].item_name);
outapp->WriteUInt32(emu->bandoliers[r].items[j].item_id);
if (emu->bandoliers[r].items[j].icon)
outapp->WriteString(emu->bandoliers[r].Items[j].Name);
outapp->WriteUInt32(emu->bandoliers[r].Items[j].ID);
if (emu->bandoliers[r].Items[j].Icon)
{
outapp->WriteSInt32(emu->bandoliers[r].items[j].icon);
outapp->WriteSInt32(emu->bandoliers[r].Items[j].Icon);
}
else
{
@@ -2324,11 +2324,11 @@ namespace RoF
for (uint32 r = 0; r < EmuConstants::POTION_BELT_SIZE; r++)
{
outapp->WriteString(emu->potionbelt.items[r].item_name);
outapp->WriteUInt32(emu->potionbelt.items[r].item_id);
if (emu->potionbelt.items[r].icon)
outapp->WriteString(emu->potionbelt.Items[r].Name);
outapp->WriteUInt32(emu->potionbelt.Items[r].ID);
if (emu->potionbelt.Items[r].Icon)
{
outapp->WriteSInt32(emu->potionbelt.items[r].icon);
outapp->WriteSInt32(emu->potionbelt.Items[r].Icon);
}
else
{