Quote (nubshat @ Mar 5 2013 01:59pm)
What do you mean?
Code
private ImageIcon[] ImageArray;
explain what you think this line does.
edit: actually f that too lazy to wait for response
maybe:
Code
private ImageIcon[] ImageArray = new ImageIcon[36]; //no longer just a reference, now you have successfully put this shit into the heap! congrats!
edit: I guess since it is matching you wouldn't need 36 elements...but you get the idea
This post was edited by Eep on Mar 5 2013 08:33pm