gooofy / aqb

A BASIC Compiler and IDE for Amiga Computers
MIT License
74 stars 7 forks source link

One more crash #37

Closed blackborn66 closed 1 year ago

blackborn66 commented 1 year ago

Another situation leads to a crash of the IDE in 0.8.2 and 0.9.0

OPTION EXPLICIT

TYPE GameGrid
    player AS Integer
    nTake AS Integer
    cx AS Integer
    cy AS Integer
END TYPE

DIM SHARED GG(8, 8) AS GameGrid
DIM SHARED HUMAN AS Integer

SUB InitGame
    HUMAN = 4
    GG(5, 5).player = HUMAN
END SUB
gooofy commented 1 year ago

works for me - maybe my fixes for #42 or #44 fixed this one as well, can you confirm?

blackborn66 commented 1 year ago

Yes it's working now!