PropBasic: INC
VonSzarvas
Posts: 3,525
I tried this:
BUT- The INC did not occur, the SD_sectorsize remains at 33536
Then I did this:
And it worked fine. SD_sectorsize = 33732
I could pass my array to a single byte... but should this work ?
Thanks!
tmpa(7) = 196 SD_sectorsize = 33536 INC SD_sectorsize, tmpa(7)
BUT- The INC did not occur, the SD_sectorsize remains at 33536
Then I did this:
INC SD_sectorsize, 196
And it worked fine. SD_sectorsize = 33732
I could pass my array to a single byte... but should this work ?
Thanks!
Comments
Hmmm, yeah that should work. But it doesn't.
I'll check into fixing that in the compiler.
Thanks for finding that bug.
For now just use this instead:
Bean
Thanks.