// 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
|