* RomanToInt fixed, solves #7060

git-svn-id: trunk@3900 -
This commit is contained in:
florian 2006-06-20 08:00:55 +00:00
parent ea06d139c2
commit 53cdd50152

View File

@ -1231,7 +1231,7 @@ end;
function RomanToint(const S: string): Longint;
const
RomanChars = ['C','D','i','L','M','V','X'];
RomanChars = ['C','D','I','L','M','V','X'];
RomanValues : array['C'..'X'] of Word
= (100,500,0,0,0,0,1,0,0,50,1000,0,0,0,0,0,0,0,0,5,0,10);