Changeset 246


Ignore:
Timestamp:
05/29/14 17:24:48 (11 years ago)
Author:
epyon
Message:
  • sdl mouse move event didn't record relative values - fixed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gl/gl_window.cc

    r245 r246  
    129129        mevent.mmove.x       = static_cast< uint16 >( mm.x );
    130130        mevent.mmove.y       = static_cast< uint16 >( mm.y );
     131        mevent.mmove.rx      = static_cast< sint16 >( mm.xrel );
     132        mevent.mmove.ry      = static_cast< sint16 >( mm.yrel );
    131133        return true;
    132134}
Note: See TracChangeset for help on using the changeset viewer.