mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-02 22:05:43 +02:00
Fixed bad battle backgrounds (introduced in r2334).
This commit is contained in:
parent
d71ed76a0f
commit
04995938dc
@ -220,9 +220,9 @@ void Graphics::initializeBattleGraphics()
|
|||||||
BOOST_FOREACH(const JsonNode &t, config["backgrounds"].Vector()) {
|
BOOST_FOREACH(const JsonNode &t, config["backgrounds"].Vector()) {
|
||||||
idx++;
|
idx++;
|
||||||
}
|
}
|
||||||
battleBacks.resize(idx);
|
battleBacks.resize(idx+1); // 1 to idx, 0 is unused
|
||||||
|
|
||||||
idx = 0;
|
idx = 1;
|
||||||
BOOST_FOREACH(const JsonNode &t, config["backgrounds"].Vector()) {
|
BOOST_FOREACH(const JsonNode &t, config["backgrounds"].Vector()) {
|
||||||
battleBacks[idx].push_back(t.String());
|
battleBacks[idx].push_back(t.String());
|
||||||
idx++;
|
idx++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user