mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Use default argument value for ReadCount
This commit is contained in:
parent
c4330a777c
commit
39f0c131c3
1 changed files with 2 additions and 1 deletions
|
@ -1521,7 +1521,8 @@ void LoadBoxes()
|
||||||
|
|
||||||
void LoadMirrors()
|
void LoadMirrors()
|
||||||
{
|
{
|
||||||
int mirrorCount = ReadCount(CUBE(1024));
|
int mirrorCount = ReadCount();
|
||||||
|
|
||||||
TENLog("Mirror count: " + std::to_string(mirrorCount), LogLevel::Info);
|
TENLog("Mirror count: " + std::to_string(mirrorCount), LogLevel::Info);
|
||||||
g_Level.Mirrors.reserve(mirrorCount);
|
g_Level.Mirrors.reserve(mirrorCount);
|
||||||
for (int i = 0; i < mirrorCount; i++)
|
for (int i = 0; i < mirrorCount; i++)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue