Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-08-12 12:03:18 +0000
committerStijn Buys <ingar@osirion.org>2009-08-12 12:03:18 +0000
commit183f0f0b905715f0d89b38174fdfd44641c1a79c (patch)
tree6cae553ac6284044002fb668c7991da27291825d /src/model/model.cc
parent8bf8afe68ca15c61b0dea1f5c1ef5fc7186dca0f (diff)
src/model filenames cleanup, parse .map texture coordinates, early loading of material textures
Diffstat (limited to 'src/model/model.cc')
-rw-r--r--src/model/model.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/model.cc b/src/model/model.cc
index b02f127..1f9fcb5 100644
--- a/src/model/model.cc
+++ b/src/model/model.cc
@@ -5,9 +5,9 @@
*/
#include "sys/sys.h"
-#include "model/asefile.h"
#include "model/model.h"
-#include "model/map.h"
+#include "model/asefile.h"
+#include "model/mapfile.h"
#include "model/vertexarray.h"
namespace model
@@ -112,7 +112,7 @@ Model *Model::load(std::string const & name)
}
if (!model) {
- con_warn << "Could not open " << name << std::endl;
+ con_warn << "Could not open model " << name << std::endl;
} else {
model_registry[model->name()] = model;
}