(('B' << 0) | ('S' <<
| ('P' << 16) | ('2'<<24))
I can't do that in HaXe. HaXe expects those string literals to be ints.
I googled "c++ bitshift string literals" and other such things but, I can't find anything that tells me what type of int value those characters are perceived as.
Is it Oct? Dec? Hex? Something Else?
When I get past this little baby hump I should be able to parse 2PSB, BSP & BSP2. I already made all of the other necessary changes.

I can't do that in HaXe. HaXe expects those string literals to be ints.
I googled "c++ bitshift string literals" and other such things but, I can't find anything that tells me what type of int value those characters are perceived as.
Is it Oct? Dec? Hex? Something Else?
When I get past this little baby hump I should be able to parse 2PSB, BSP & BSP2. I already made all of the other necessary changes.
Comment