Hi all!
I compiled a list of LONG and FLOAT constants with the compilerparameter /RESIDENT to a .RES - File.
Now all is ok for the LONG-values, but if I try to call a FLOAT, I get back a big LONG instead of the correct value.
Do I have to call the resident's Floats in another way?
Example:
Code: Select all
#TESTLONG = 1234 #TESTFLOAT.f = 56.789Code: Select all
Debug #TESTLONG
Debug #TESTFLOATThe follwing code is okay, of course, cause I declare the constants in the program itself.
Code: Select all
#TESTFLOAT2.f = 56.789
Debug #TESTFLOAT2Purebasic - what a nice name for a girl-friend
