Fix for own mistake in rB83f2012300acadafd359307e7a00bd71e67e3fd7: used

bool instead of int.

Thanks to Campbell Barton for noticing.
This commit is contained in:
Lukas Tönne
2014-03-24 20:54:50 +01:00
parent e9a64e2770
commit ff21f6aeef

View File

@@ -436,7 +436,7 @@ void BlenderSync::sync_objects(BL::SpaceView3D b_v3d, int motion)
* 1 : eModifierMode_Realtime
* 2 : eModifierMode_Render
*/
bool dupli_settings = preview ? 1 : 2;
int dupli_settings = preview ? 1 : 2;
bool cancel = false;