diff options
author | Stijn Buys <ingar@osirion.org> | 2008-05-12 18:32:15 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-05-12 18:32:15 +0000 |
commit | 5ceb4694a05ec68b5cfba18b0f25ba804be88a80 (patch) | |
tree | d1baddc086de4bb4fa04cf59d11516f4ecc89bf3 /src/model | |
parent | e4f2faa8d5895ba30207c09c7886afb21a697d5f (diff) |
console colors
Diffstat (limited to 'src/model')
-rw-r--r-- | src/model/vertexarray.cc | 4 |
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(); } |