[Scummvm-git-logs] scummvm master -> 0657fdbd93e499d7a19663002c5c27a607451529

digitall 547637+digitall at users.noreply.github.com
Mon Mar 29 06:26:19 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
0657fdbd93 TWINE: Fix Mismatched Tags GCC Compiler Warning


Commit: 0657fdbd93e499d7a19663002c5c27a607451529
    https://github.com/scummvm/scummvm/commit/0657fdbd93e499d7a19663002c5c27a607451529
Author: D G Turner (digitall at scummvm.org)
Date: 2021-03-29T07:25:19+01:00

Commit Message:
TWINE: Fix Mismatched Tags GCC Compiler Warning

This is emitted if -Wmismatched-tags is set.

Changed paths:
    engines/twine/parser/text.h


diff --git a/engines/twine/parser/text.h b/engines/twine/parser/text.h
index 50a676b847..53b680782f 100644
--- a/engines/twine/parser/text.h
+++ b/engines/twine/parser/text.h
@@ -31,7 +31,8 @@
 
 namespace TwinE {
 
-struct TextEntry {
+class TextEntry {
+public:
 	Common::String string;	/**< The real string behind the text id */
 	int index;				/**< The index in the text index hqr file. This is also the index in the corresponding vox hqr file */
 	int textIndex;			/**< The text identifier */




More information about the Scummvm-git-logs mailing list