mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-08 01:50:35 +02:00
* we halt if the currency values are *not* equal, not if they're equal... m(
git-svn-id: trunk@42487 -
This commit is contained in:
parent
73acb4d1c1
commit
0c27ea83be
@ -131,7 +131,7 @@ begin
|
||||
Halt(61);
|
||||
if aStrm.Read(cu, SizeOf(cu)) <> SizeOf(cu) then
|
||||
Halt(62);
|
||||
if SameValue(cu, CurrVal, 0.00009) then
|
||||
if not SameValue(cu, CurrVal, 0.00009) then
|
||||
Halt(63);
|
||||
if aStrm.Read(g, SizeOf(g)) <> SizeOf(g) then
|
||||
Halt(64);
|
||||
|
Loading…
Reference in New Issue
Block a user