Initialize 'dz' again in the input routine. Fixes breakage introduced

in 1.2 and noticed by robert@.
This commit is contained in:
matthieu 2007-07-27 06:49:39 +00:00
parent cd2d3c8c17
commit b19e1aa7ef

View File

@ -13,7 +13,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $OpenBSD: ws.c,v 1.2 2007/05/26 17:24:45 matthieu Exp $ */ /* $OpenBSD: ws.c,v 1.3 2007/07/27 06:49:39 matthieu Exp $ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
@ -458,7 +458,7 @@ wsReadInput(InputInfoPtr pInfo)
n /= sizeof(struct wscons_event); n /= sizeof(struct wscons_event);
while( n-- ) { while( n-- ) {
int buttons = priv->lastButtons; int buttons = priv->lastButtons;
int dx = 0, dy = 0, dz, dw = 0; int dx = 0, dy = 0, dz = 0, dw = 0;
int zbutton = 0, wbutton = 0; int zbutton = 0, wbutton = 0;
ax = 0; ay = 0; ax = 0; ay = 0;