mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 15:15:31 +00:00
Fixed uninit var in loadland.hpp
This commit is contained in:
parent
0eae9d1504
commit
6a12ce313e
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ struct Land
|
||||||
context = esm.getContext();
|
context = esm.getContext();
|
||||||
|
|
||||||
hasData = false;
|
hasData = false;
|
||||||
int cnt;
|
int cnt = 0;
|
||||||
|
|
||||||
// Skip these here. Load the actual data when the cell is loaded.
|
// Skip these here. Load the actual data when the cell is loaded.
|
||||||
if(esm.isNextSub("VNML")) {esm.skipHSubSize(12675);cnt++;}
|
if(esm.isNextSub("VNML")) {esm.skipHSubSize(12675);cnt++;}
|
||||||
|
|
Loading…
Reference in a new issue