diff options
author | Nicola Mettifogo | 2009-01-04 15:37:46 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2009-01-04 15:37:46 +0000 |
commit | 7a0b782a3cb1f577e58da47255543bf3d506aa4e (patch) | |
tree | cd0f3f732386216ff002b5ec84b3be4238aa49c5 /engines | |
parent | a53fa36913d3effba490d1d179c27833684b2635 (diff) | |
download | scummvm-rg350-7a0b782a3cb1f577e58da47255543bf3d506aa4e.tar.gz scummvm-rg350-7a0b782a3cb1f577e58da47255543bf3d506aa4e.tar.bz2 scummvm-rg350-7a0b782a3cb1f577e58da47255543bf3d506aa4e.zip |
Made sure to display labels on animations.
svn-id: r35726
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/parser_ns.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/parallaction/parser_ns.cpp b/engines/parallaction/parser_ns.cpp index bce99de730..064a47cbca 100644 --- a/engines/parallaction/parser_ns.cpp +++ b/engines/parallaction/parser_ns.cpp @@ -231,6 +231,7 @@ DECLARE_ANIM_PARSER(label) { debugC(7, kDebugParser, "ANIM_PARSER(label) "); ctxt.a->_label = _vm->_gfx->renderFloatingLabel(_vm->_labelFont, _tokens[1]); + ctxt.a->_flags &= ~kFlagsNoName; } |