Youanden
unread,Jul 11, 2010, 4:46:57 AM7/11/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to The_Elements
On lines 42 and 43 on R15, appear these lines:
42 static final int maxy = 414; // 454 for g1, 815 for droid
43 static final int maxx = 319; // 319 for g1, 479 for droid
Shouldn't final's be capitalized as constants, and seeing as how they
are supposed to change, is it really good practice to reference a
changing value as a final?
Obviously it doesn't change during the sequence of the game, only when
re instantiated, but still.