Skip to content

Commit

Permalink
#194 add debug statement to help debug this issue
Browse files Browse the repository at this point in the history
  • Loading branch information
game-stop committed Jul 5, 2019
1 parent 42b89bd commit 9c430b3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions veejay-current/veejay-server/veejay/vj-event.c
Original file line number Diff line number Diff line change
Expand Up @@ -1528,6 +1528,11 @@ int vj_event_single_fire(void *ptr , SDL_Event event, int pressed)
int index = vims_mod * SDL_NUM_SCANCODES + vims_key;

vj_keyboard_event *ev = get_keyboard_event( index );

veejay_msg(VEEJAY_MSG_DEBUG,
"VIMS modifier: %d (SDL modifier %d/%x), Key %d, VIMS event %p",
vims_mod, mod,mod, vims_key, ev );

if(!ev )
{
if(event.type == SDL_MOUSEWHEEL && event.wheel.y >0 && v->use_osd != 3 ) {
Expand Down

0 comments on commit 9c430b3

Please sign in to comment.