WAGE: Fix style issues
This commit is contained in:
parent
c071eb0e18
commit
5bb5bb64f0
4 changed files with 42 additions and 4 deletions
|
@ -146,12 +146,12 @@ void Scene::paint(Graphics::ManagedSurface *surface, int x, int y) {
|
|||
_design->paint(surface, *((WageEngine *)g_engine)->_world->_patterns, x, y);
|
||||
|
||||
for (ObjList::const_iterator it = _objs.begin(); it != _objs.end(); ++it) {
|
||||
debug(2, "paining Obj: %s, index: %d, type: %d", (*it)->_name.c_str(), (*it)->_index, (*it)->_type);
|
||||
debug(2, "painting Obj: %s, index: %d, type: %d", (*it)->_name.c_str(), (*it)->_index, (*it)->_type);
|
||||
(*it)->_design->paint(surface, *((WageEngine *)g_engine)->_world->_patterns, x, y);
|
||||
}
|
||||
|
||||
for (ChrList::const_iterator it = _chrs.begin(); it != _chrs.end(); ++it) {
|
||||
debug(2, "paining Chr: %s", (*it)->_name.c_str());
|
||||
debug(2, "painting Chr: %s", (*it)->_name.c_str());
|
||||
(*it)->_design->paint(surface, *((WageEngine *)g_engine)->_world->_patterns, x, y);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue