From dad0a6f977633a866304024aced08c1059f48a7b Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 27 Aug 2020 09:57:36 +0300 Subject: [PATCH] - fixed typo in serialization error message --- src/serializer_doom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serializer_doom.cpp b/src/serializer_doom.cpp index d94eb5d22d..4a011c28d7 100644 --- a/src/serializer_doom.cpp +++ b/src/serializer_doom.cpp @@ -263,7 +263,7 @@ template<> FSerializer &Serialize(FSerializer &ar, const char *key, line_t *&val template<> FSerializer &Serialize(FSerializer &ar, const char *key, vertex_t *&value, vertex_t **defval) { auto arc = dynamic_cast(&ar); - if (!arc || arc->Level == nullptr) I_Error("Trying to serialize verte without a valid level"); + if (!arc || arc->Level == nullptr) I_Error("Trying to serialize vertex without a valid level"); return SerializePointer(*arc, key, value, defval, arc->Level->vertexes); }