Merge pull request #281 from thatsIch/controlflow

Simplified some control flow statements
This commit is contained in:
Chris
2014-10-09 13:22:55 -07:00
33 changed files with 64 additions and 78 deletions
@@ -307,8 +307,8 @@ public class GuiCraftConfirm extends AEBaseGui
{
updateCPUButtonText();
start.enabled = ccc.noCPU || isSimulation() ? false : true;
selectCPU.enabled = isSimulation() ? false : true;
start.enabled = !(ccc.noCPU || isSimulation());
selectCPU.enabled = !isSimulation();
int x = 0;
int y = 0;