POV-Ray : Newsgroups : povray.general : Bug. Known? : Bug. Known? Server Time
2 Aug 2024 08:11:07 EDT (-0400)
  Bug. Known?  
From: Shay
Date: 7 Dec 2004 16:57:32
Message: <41b6274c$1@news.povray.org>
// Windows 98. 650Mhz with 128?M RAM.
// Sometimes fails to change value to "1" in latest 3.6
// quantity and iteration of failures changes when
// "Buggy" lines are uncommented.
// No failures in 3.5

// #local Buggy = 1;
// #local Buggy = 1;
// #local Buggy = 1;
#macro Change_Value ( VARIABLE )
	#local VARIABLE = 1;
#end

#local c0 = 0; #while ( c0 < 10000 )
	#local MyVariable = 0;
	Change_Value ( MyVariable )
	#if ( MyVariable = 0 )
		#warning "Value didn't change\n"
	#end
#local c0 = c0 + 1; #end

  // -Shay


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.