Removed some excess mouse logging.
This commit is contained in:
@@ -178,7 +178,6 @@ mouse_timer_poll(UNUSED(void *priv))
|
|||||||
void
|
void
|
||||||
mouse_scale(int x, int y)
|
mouse_scale(int x, int y)
|
||||||
{
|
{
|
||||||
pclog("mouse_scale()\n");
|
|
||||||
double scaled_x = (((double) x) * mouse_sensitivity) + mouse_x_error;
|
double scaled_x = (((double) x) * mouse_sensitivity) + mouse_x_error;
|
||||||
double scaled_y = (((double) y) * mouse_sensitivity) + mouse_y_error;
|
double scaled_y = (((double) y) * mouse_sensitivity) + mouse_y_error;
|
||||||
|
|
||||||
|
@@ -344,8 +344,6 @@ WindowsRawInputFilter::mouse_handle(PRAWINPUT raw)
|
|||||||
static int y, delta_y;
|
static int y, delta_y;
|
||||||
static int b, delta_z;
|
static int b, delta_z;
|
||||||
|
|
||||||
pclog("WindowsRawInputFilter::mouse_handle()\n");
|
|
||||||
|
|
||||||
b = mouse_get_buttons_ex();
|
b = mouse_get_buttons_ex();
|
||||||
|
|
||||||
/* read mouse buttons and wheel */
|
/* read mouse buttons and wheel */
|
||||||
|
Reference in New Issue
Block a user