From 93c8fdbef42de67d20e382132b8669710eb0483f Mon Sep 17 00:00:00 2001 From: Carsten Larsen Date: Thu, 14 Jan 2021 23:51:15 +0100 Subject: [PATCH] To ensure compatibility, set fraction point to full stop / period --- src/system/language_amiga.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/system/language_amiga.cpp b/src/system/language_amiga.cpp index b473bddb..497fd101 100644 --- a/src/system/language_amiga.cpp +++ b/src/system/language_amiga.cpp @@ -104,7 +104,12 @@ char* AmigaLanguage::Translate(identhelpdef *def) char AmigaLanguage::GetFractionPoint() { +#if defined(STRICT_LOCAL) return locale->loc_DecimalPoint[0]; +#else + // To ensure compatibility, set fraction point to full stop / period + return '.'; +#endif } bool AmigaLanguage::CharIsAlNum(long unsigned int character)