[Bf-blender-cvs] [399c978] master: fix breakage caused by D2094 / rB404f41d22de46119ee8afb409011eb1ba1840092

lazydodo noreply at git.blender.org
Mon Jul 18 21:09:57 CEST 2016


Commit: 399c978a551dfd13504852aaa7d3a2ab874272fe
Author: lazydodo
Date:   Mon Jul 18 13:08:03 2016 -0600
Branches: master
https://developer.blender.org/rB399c978a551dfd13504852aaa7d3a2ab874272fe

fix breakage caused by D2094 / rB404f41d22de46119ee8afb409011eb1ba1840092

===================================================================

M	source/gameengine/GamePlayer/ghost/GPG_ghost.cpp

===================================================================

diff --git a/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp b/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
index 9c3f94f..d033afa 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
@@ -709,7 +709,7 @@ int main(
 			{
 				i++;
 				if ( (i + 1) <= validArguments )
-					parentWindow = atoi(argv[i++]);
+					parentWindow = (GHOST_TEmbedderWindowID)atoll(argv[i++]);
 				else {
 					error = true;
 					printf("error: too few options for parent window argument.\n");




More information about the Bf-blender-cvs mailing list