Skip to content

Commit 8a78945

Browse files
authored
Fix for LPARAM variable, double to int
1 parent a5b27d6 commit 8a78945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/gameengine/GamePlayer/GPG_ghost.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ static HWND findGhostWindowHWND(GHOST_IWindow* window)
249249
{
250250
found_ghost_window_hwnd = nullptr;
251251
ghost_window_to_find = window;
252-
LPARAM lParam = 0.0;
252+
LPARAM lParam = 0;
253253
EnumWindows(findGhostWindowHWNDProc, lParam);
254254
return found_ghost_window_hwnd;
255255
}

0 commit comments

Comments
 (0)