Zitat:
Der Ausdruck `rScale > SCALE_DEFAULT` wird je nach Compiler als Double oder Extended ausgewertet
Was muss ich jetzt tun?
Hatte noch nie so ein Problem.
Versuch mal Folgendes:
Delphi-Quellcode:
tmpsingle := rScale - SCALE_DEFAULT;
if tmpsingle > 0 then ...
Ich habe es so gelöst.. Danke.
Delphi-Quellcode:
const
SCALE_DEFAULT: single = 0.68;
gruss