From dd9a4f4b5b5b55fa41129568ff8ad4c9329e6759 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 2 May 2016 20:44:33 -0400 Subject: TITANIC: Implement Deploy Comfort Device glyph --- engines/titanic/pet_control/pet_remote.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'engines/titanic/pet_control/pet_remote.cpp') diff --git a/engines/titanic/pet_control/pet_remote.cpp b/engines/titanic/pet_control/pet_remote.cpp index dbb912277d..9277f81610 100644 --- a/engines/titanic/pet_control/pet_remote.cpp +++ b/engines/titanic/pet_control/pet_remote.cpp @@ -73,7 +73,8 @@ static const byte REMOTE_DATA[] = { 0x1C, 0x00, 0x1D, 0x02, GLYPH_SUMMON_ELEVATOR, 0x10, 0x1E, 0x0C, - GLYPH_DEPLOY_FLORAL, GLYPH_DEPLOY_RELAXATION, 0x07, 0x08, + GLYPH_DEPLOY_FLORAL, GLYPH_DEPLOY_RELAXATION, GLYPH_DEPLOY_COMFORT, + 0x08, GLYPH_ENTERTAINMENT_DEVICE, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x1F, 0x01, 0x10, 0x20, 0x02, @@ -338,6 +339,10 @@ bool CPetRemote::loadGlyph(int glyphIndex) { glyph = new CDeployRelaxationGlyph(); break; + case GLYPH_DEPLOY_COMFORT: + glyph = new CDeployComfortGlyph(); + break; + default: break; } -- cgit v1.2.3