Skip to content

Commit

Permalink
Fixed mismerged patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 11, 2005
1 parent 784ec81 commit 29f4526
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/windx5/SDL_dx5events.c
Expand Up @@ -181,7 +181,7 @@ static int DX5_DInputInit(_THIS)
SetDIerror("DirectInputDevice::QueryInterface", result);
return(-1);
}
topwnd = GetTopLevelParent(SDL_Window, GA_ROOT);
topwnd = GetTopLevelParent(SDL_Window);
result = IDirectInputDevice2_SetCooperativeLevel(SDL_DIdev[i],
topwnd, inputs[i].win_level);
if ( result != DI_OK ) {
Expand Down Expand Up @@ -665,7 +665,7 @@ void DX5_DInputReset(_THIS, int fullscreen)
level = inputs[i].win_level;
}
IDirectInputDevice2_Unacquire(SDL_DIdev[i]);
topwnd = GetTopLevelParent(SDL_Window, GA_ROOT);
topwnd = GetTopLevelParent(SDL_Window);
result = IDirectInputDevice2_SetCooperativeLevel(
SDL_DIdev[i], topwnd, level);
IDirectInputDevice2_Acquire(SDL_DIdev[i]);
Expand Down

0 comments on commit 29f4526

Please sign in to comment.