Skip to content

Commit

Permalink
version change, dead code removal
Browse files Browse the repository at this point in the history
  • Loading branch information
okushama committed Dec 9, 2013
1 parent 395f22d commit 4129c9c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions okushama/nek/GuiSubKeybindsScrollPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public GuiSubKeybindsScrollPanel(GuiSubKeybindsMenu controls, GameSettings optio
protected int getSize()
{
return keyBindings.length;
//return options.keyBindings.length;
}

@Override
Expand Down Expand Up @@ -94,21 +93,13 @@ public void drawScreen(int mX, int mY, float f)
KeyBinding.resetKeyBindingArrayAndHash();
}
}

for(int i = 0; i < keyBindings.length; i++){
KeyBinding kb = keyBindings[i];
//this.drawKeybindOption(kb, mX, mY,1, Tessellator.instance);
}

super.drawScreen(mX, mY, f);
}

@Override
protected void drawSlot(int index, int xPosition, int yPosition, int l, Tessellator tessellator)
{
String s = I18n.getString(this.keyBindings[index].keyDescription);
// controls.drawTexturedModalRect(xPosition, yPosition, 0, 46 + 1 * 20, 70, 20);
// controls.drawString(mc.fontRenderer, s, xPosition + 70 + 4, yPosition + 6, 0xFFFFFFFF);
int width = 70;
int height = 20;
xPosition -= 20;
Expand Down
2 changes: 1 addition & 1 deletion okushama/nek/NotEnoughKeys.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import cpw.mods.fml.common.registry.TickRegistry;
import cpw.mods.fml.relauncher.Side;

@Mod(modid = "notenoughkeys", name = "Not Enough Keys", version = "0.0.1")
@Mod(modid = "notenoughkeys", name = "Not Enough Keys", version = "0.0.2")

public class NotEnoughKeys {

Expand Down

0 comments on commit 4129c9c

Please sign in to comment.