I've run into a really weird bug. I have the following code running in a function:

if (throwsThisRound % 3 == 0){
    debug('do it');
    throwsThisRound = 0;
    players[button.playerNum].throwsThisRound = 0;
    changeTurn();
};

This works perfectly fine. However, if I were to remove the debug function, which is just a function which runs Ti.API.debug(param), nothing in the if statement runs. How can this happen? I have literally commented out the code, run my app, and uncommented the code and run again. I can reproduce this every time. Very strange.

link|improve this question

60% accept rate
1  
Your accept rate is quite low, if you go back and accept some answers on your older questions people will be more likely to try to help you. – Mark Pim Dec 6 '11 at 11:15
Hi Mark, yeah sorry about that.... I'm still pretty new here, and I keep forgetting to go back. – gjunkie Dec 6 '11 at 19:49
No problem, the accept rate is often a good way to show others that you're contributing back to the site. – Mark Pim Dec 6 '11 at 22:16
feedback

1 Answer

up vote 1 down vote accepted

What I see very often is bugs like these. Add some line somewhere (or remove it) and all of a sudden in doesn't work anymore, without it actually changing.

The solution is very simple. Go to your builds folder, and remove the build content, but not the folder itself.

So remove the contents of these folders (depending on your deployment target):

/Titanium Workspace/Your Project Name/build/iphone/
/Titanium Workspace/Your Project Name/build/android/
link|improve this answer
Thanks! I'll try this next time. What I ended up doing was just running Clean, quitting and re-opening. I may just have had the app open for too long (days). – gjunkie Dec 8 '11 at 0:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.