mirror of
https://gitlab.com/rnger/amath
synced 2025-10-05 02:19:17 +00:00
To ensure compatibility, set fraction point to full stop / period
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user