To ensure compatibility, set fraction point to full stop / period

This commit is contained in:
Carsten Sonne Larsen 2021-01-14 23:51:15 +01:00
parent dd7884bc22
commit 93c8fdbef4
1 changed files with 5 additions and 0 deletions

View File

@ -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)