mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-20 00:41:12 +00:00
MORTEVIELLE: Bugfix for loading data in init_lieu method
This commit is contained in:
parent
3e0b4d3774
commit
9957819311
@ -300,7 +300,8 @@ void ani50() {
|
|||||||
error("Missing file - MXX.mor");
|
error("Missing file - MXX.mor");
|
||||||
|
|
||||||
for (int i = 1; i < 8; ++i)
|
for (int i = 1; i < 8; ++i)
|
||||||
f_lieu.read(&v_lieu[i][1], 24);
|
for (int j = 0; j < 25; ++j)
|
||||||
|
v_lieu[i][j] = f_lieu.readByte();
|
||||||
|
|
||||||
f_lieu.close();
|
f_lieu.close();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user