Fixed the problem
Fixed the problem
Last edited by lordpeter; 11-07-12 at 09:16 PM.
These:
Change it toCode:if(m = 1) { ... }
Also, take a look at using else if's. Using only if's as often as you do in this code is bad-bad-bad-bad-bad.Code:if(m == 1) { ... }