Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Initialising an array of addresses
#2
You can't do it that way, but you can simply put those bytes in 16bit format:
Code:
dim tsAddress(TSMAXTILES) as uinteger => {0 + 256 * 0, 191 + 256 * 191, 191 + 256 * 191, 191 + 256 * 191, 0 ...
or also
Code:
dim tsAddress(TSMAXTILES) as uinteger => {0x0000, 0xBFBF, 0xBFBF, 0xBFBF, 0x0000, ...
Note, BFBF = 191, 191 etc...
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)