From c32d2ed11aa382c6ca107bf9091701342f8bb9b0 Mon Sep 17 00:00:00 2001 From: staphen Date: Tue, 26 Oct 2021 11:52:01 -0400 Subject: [PATCH] Fix size of option string used for determining language code --- Source/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/options.h b/Source/options.h index 4ff24eb64..522f82fbe 100644 --- a/Source/options.h +++ b/Source/options.h @@ -171,7 +171,7 @@ struct ChatOptions { struct LanguageOptions { /** @brief Language code (IETF) for text. */ - char szCode[5]; + char szCode[6]; }; struct Options {