Fixed small compilation error.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1380 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
ceylo 2010-01-29 00:17:21 +00:00
parent f644f6220d
commit d3a53570d7

View File

@ -49,7 +49,7 @@ void Joystick::Initialize(unsigned int Index)
JoystickState Joystick::UpdateState()
{
// Fill a JoystickState instance with the current joystick state
JoystickState s = {0};
JoystickState s;
return s;
}