It is indeed a bug. It is related to a previous change in the way that rotated graphics are created. You can fix it with this code in TrimCache:
	
	
	
	
	
	
	
	
	
		For Each m As Map In data.MapsOfCompressedBCs
           Dim zero As CompressedBC = m.Get(0) '<--- new
           m.Clear
           m.Put(0, zero) '<--- new
       Next
	 
	
	
		
	
 
It is fixed for the next update.
As a general rule it is not good that the cache needs to be cleared too frequently. It can have a bad impact on the performance.
You have two options:
1. Increase the cache size: MAX_SIZE_OF_ALL_COMPRESSEDBCS
2. Set the angle interval to 2 or 3.