Skip to content

Commit

Permalink
Fix for LPARAM variable, double to int
Browse files Browse the repository at this point in the history
  • Loading branch information
lordloki committed Oct 28, 2017
1 parent a5b27d6 commit 8a78945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gameengine/GamePlayer/GPG_ghost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static HWND findGhostWindowHWND(GHOST_IWindow* window)
{
found_ghost_window_hwnd = nullptr;
ghost_window_to_find = window;
LPARAM lParam = 0.0;
LPARAM lParam = 0;
EnumWindows(findGhostWindowHWNDProc, lParam);
return found_ghost_window_hwnd;
}
Expand Down

1 comment on commit 8a78945

@youle31
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks :)

Please sign in to comment.