Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Warboy1982 committed Oct 29, 2012
1 parent f79b7de commit 295be66
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/Resource/XcomResourcePack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,16 @@ void XcomResourcePack::loadBattlescapeResources()
"MUTON.PCK",
"X_REAP.PCK",
"ETHEREAL.PCK",
"X_ROB.PCK"
"X_ROB.PCK",
"XCOM_3.PCK",
"XCOM_4.PCK",
"POLICEM.PCK",
"POLICEF.PCK",
"G_SOLDIER.PCK"

};

for (int i = 0; i < 20; ++i)
for (int i = 0; i < 25; ++i)
{
std::stringstream s;
s << "UNITS/" << usets[i];
Expand Down Expand Up @@ -516,7 +522,8 @@ void XcomResourcePack::loadBattlescapeResources()
std::string invs[] = {"MAN_0",
"MAN_1",
"MAN_2",
"MAN_3"};
"MAN_3",
"MAN_4"};
std::string sets[] = {"F0",
"F1",
"F2",
Expand All @@ -526,7 +533,7 @@ void XcomResourcePack::loadBattlescapeResources()
"M2",
"M3"};

for (int i = 0; i < 4; ++i)
for (int i = 0; i < 5; ++i)
{
std::stringstream s1, s1full, s2, s2full;
s1 << invs[i] << ".SPK";
Expand Down

0 comments on commit 295be66

Please sign in to comment.