fixed sfSceneEq bug

fixed load actors entrance
removed some orphans

svn-id: r17964
This commit is contained in:
Andrew Kurushin 2005-05-08 14:04:06 +00:00
parent 781472641e
commit a81b093e65
12 changed files with 326 additions and 420 deletions

View file

@ -96,7 +96,6 @@ bool Render::initialized() {
int Render::drawScene() {
SURFACE *backbuf_surface;
SCENE_INFO scene_info;
SCENE_BGINFO bg_info;
Point bg_pt;
char txt_buf[20];
@ -140,9 +139,7 @@ int Render::drawScene() {
}
// Draw queued text strings
_vm->_scene->getInfo(&scene_info);
_vm->textDrawList(scene_info.text_list, backbuf_surface);
_vm->textDrawList(_vm->_scene->_textList, backbuf_surface);
// Handle user input
_vm->processInput();