From 6252a1c647407453edc720a80e6a903221b748ca Mon Sep 17 00:00:00 2001 From: nataliapc Date: Wed, 25 Sep 2024 15:51:28 +0200 Subject: [PATCH] Bugfix --- src/Version.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Version.cc b/src/Version.cc index 01314e3ae6..a9d3d40876 100644 --- a/src/Version.cc +++ b/src/Version.cc @@ -9,7 +9,7 @@ std::string Version::full() { std::string result = strCat("openMSX ", VERSION); if constexpr (!RELEASE) strAppend(result, '-', REVISION); - strAppend(result, " / TSX rev.3") + strAppend(result, " / TSX rev.3"); return result; }