forked from mirrors/0ad
Introduce a namespace in Loader
All functions had a `LDR_` prefix. The prefix is removed. Functions and globals which are only used in Loader.cpp are now contained in an anonymous namespace.
This commit is contained in:
+1
-1
@@ -329,7 +329,7 @@ static int ProgressiveLoad()
|
||||
int progressPercent{0};
|
||||
try
|
||||
{
|
||||
const LDR_ProgressiveLoadResult result{LDR_ProgressiveLoad(10e-3)};
|
||||
const PS::Loader::ProgressiveLoadResult result{PS::Loader::ProgressiveLoad(10e-3)};
|
||||
description = result.nextDescription;
|
||||
progressPercent = result.progressPercent;
|
||||
switch(result.status)
|
||||
|
||||
Reference in New Issue
Block a user