Fixed a gazillion of warnings occuring when compiling Wagic with Clang with Werror.

This commit is contained in:
Xawotihs@gmail.com
2013-06-09 21:16:39 +00:00
parent 7990540096
commit 26ab65860e
75 changed files with 303 additions and 242 deletions

View File

@@ -33,7 +33,7 @@ public:
GuiLayer(DuelLayers *duelLayers);
virtual ~GuiLayer();
virtual void Update(float dt);
virtual bool CheckUserInput(JButton key)
virtual bool CheckUserInput(JButton)
{
return false;
}
@@ -48,12 +48,12 @@ public:
return 1;
}
virtual int receiveEventPlus(WEvent * e)
virtual int receiveEventPlus(WEvent *)
{
return 0;
}
virtual int receiveEventMinus(WEvent * e)
virtual int receiveEventMinus(WEvent *)
{
return 0;
}