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>2008-05-12 18:32:15 +0000
committerStijn Buys <ingar@osirion.org>2008-05-12 18:32:15 +0000
commit5ceb4694a05ec68b5cfba18b0f25ba804be88a80 (patch)
treed1baddc086de4bb4fa04cf59d11516f4ecc89bf3 /src/model/vertexarray.cc
parente4f2faa8d5895ba30207c09c7886afb21a697d5f (diff)
console colors
Diffstat (limited to 'src/model/vertexarray.cc')
-rw-r--r--src/model/vertexarray.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/vertexarray.cc b/src/model/vertexarray.cc
index 420e816..d13fc0c 100644
--- a/src/model/vertexarray.cc
+++ b/src/model/vertexarray.cc
@@ -25,8 +25,8 @@ VertexArray::VertexArray(size_t size)
vertex_normal = (float *) malloc(vertex_size * sizeof(float));
vertex_texture = (float *) malloc(vertex_size * sizeof(float));
- con_print << "Initializing vertex array..." << std::endl;
- con_debug << " " << size << " Mb allocated" << std::endl;
+ con_print << "^BInitializing vertex array..." << std::endl;
+ con_print << " " << size << " Mb allocated" << std::endl;
clear();
}