[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [48589] branches/soc-2011-tomato/source/ blender/windowmanager/intern/wm_playanim.c: fix for building with windows.

Campbell Barton ideasman42 at gmail.com
Wed Jul 4 14:36:43 CEST 2012


Revision: 48589
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48589
Author:   campbellbarton
Date:     2012-07-04 12:36:43 +0000 (Wed, 04 Jul 2012)
Log Message:
-----------
fix for building with windows.

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/windowmanager/intern/wm_playanim.c

Modified: branches/soc-2011-tomato/source/blender/windowmanager/intern/wm_playanim.c
===================================================================
--- branches/soc-2011-tomato/source/blender/windowmanager/intern/wm_playanim.c	2012-07-04 12:30:17 UTC (rev 48588)
+++ branches/soc-2011-tomato/source/blender/windowmanager/intern/wm_playanim.c	2012-07-04 12:36:43 UTC (rev 48589)
@@ -968,8 +968,9 @@
 			if (ibuf) {
 				BLI_strncpy(ibuf->name, ps.picture->name, sizeof(ibuf->name));
 
+				/* why only windows? (from 2.4x) - campbell */
 #ifdef _WIN32
-				GHOST_SetTitle(g_window, picture->name);
+				GHOST_SetTitle(g_window, ps.picture->name);
 #endif
 
 				while (pupdate_time()) PIL_sleep_ms(1);




More information about the Bf-blender-cvs mailing list