From 942d9233e475dc52c4129912e239f7ffffd99f66 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 16 Apr 2022 12:21:40 +0200 Subject: [PATCH] CHEWY: Remove no-effect type modifier --- engines/chewy/text.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/chewy/text.h b/engines/chewy/text.h index bff7056e272..ae8f6363f72 100644 --- a/engines/chewy/text.h +++ b/engines/chewy/text.h @@ -89,7 +89,7 @@ public: TextEntry *getText(uint chunk, uint entry, int type, int subEntry = -1); Common::StringArray getTextArray(uint chunk, uint entry, int type, int subEntry = -1); Common::String getTextEntry(uint chunk, uint entry, int type, int subEntry = -1); - const int16 getLastSpeechId() { return _lastSpeechId; } + int16 getLastSpeechId() { return _lastSpeechId; } const char *strPos(const char *txtAdr, int16 pos);