diff options
| author | Nicola Mettifogo | 2007-09-02 18:34:11 +0000 |
|---|---|---|
| committer | Nicola Mettifogo | 2007-09-02 18:34:11 +0000 |
| commit | 21e4f4f1760e204de6e8d0a413f8e8f8987dd083 (patch) | |
| tree | 1902fcb1756b1226e05dc12a4bfabead8ba9215d /engines/parallaction/graphics.cpp | |
| parent | f1f324cee424cb97da1a14789db2806002ba3f6e (diff) | |
| download | scummvm-rg350-21e4f4f1760e204de6e8d0a413f8e8f8987dd083.tar.gz scummvm-rg350-21e4f4f1760e204de6e8d0a413f8e8f8987dd083.tar.bz2 scummvm-rg350-21e4f4f1760e204de6e8d0a413f8e8f8987dd083.zip | |
Simplified global label management and added subtitles for BRA.
svn-id: r28828
Diffstat (limited to 'engines/parallaction/graphics.cpp')
| -rw-r--r-- | engines/parallaction/graphics.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp index 2508633c87..6a8ef0718b 100644 --- a/engines/parallaction/graphics.cpp +++ b/engines/parallaction/graphics.cpp @@ -409,12 +409,12 @@ void Gfx::blit(const Common::Rect& r, uint16 z, byte *data, Gfx::Buffers buffer) } +void Gfx::drawLabel(Label &label) { + if (label._text == 0) + return; - - - - - + flatBlitCnv(&label._cnv, label._pos.x, label._pos.y, Gfx::kBitBack); +} // |
