Announcement
Collapse
No announcement yet.
Space Shooter Example
Collapse
X
-
Originally posted by linkbr View Post
Can you share a compiled demo?
Thanks in advance!
Last edited by DraculaLin; 08-07-2020, 12:20 AM.
Comment
-
Comment
-
Hello,
2 Years too late but the solutions is pretty simple.
Line 210 : RandNumber: array[0..1] of string = ('-0.15', '0.15');
Suppose because of Windows Format Settings you need to change this to RandNumber: array[0..1] of string = ('-0,15', '0,15');
and it works.
Regards
Robert
Comment
-
Originally posted by robert83 View PostHello,
2 Years too late but the solutions is pretty simple.
Line 210 : RandNumber: array[0..1] of string = ('-0.15', '0.15');
Suppose because of Windows Format Settings you need to change this to RandNumber: array[0..1] of string = ('-0,15', '0,15');
and it works.
Regards
Robert
Comment
Comment