aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/id_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/archetype/id_table.h')
-rw-r--r--engines/glk/archetype/id_table.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/glk/archetype/id_table.h b/engines/glk/archetype/id_table.h
index 2aff6d6ce9..4202e390d7 100644
--- a/engines/glk/archetype/id_table.h
+++ b/engines/glk/archetype/id_table.h
@@ -49,6 +49,9 @@ struct IdRecType {
int id_index; // The ID's index in the ID table
StringPtr id_name;
IdRecType *next;
+
+ IdRecType() : id_kind(UNDEFINED_ID), id_integer(0), id_index(0),
+ id_name(nullptr), next(nullptr) {}
};
typedef IdRecType *IdRecPtr;