mirror of
				https://github.com/MaddyThorson/StrawberryBF.git
				synced 2025-11-04 01:41:33 +08:00 
			
		
		
		
	Fix compiler warnings
This commit is contained in:
		@ -560,7 +560,7 @@ namespace Strawberry
 | 
			
		||||
			delete BlendModes;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		private static readonly Blend[] BlendModes = new Blend[]
 | 
			
		||||
		private static readonly Blend[] BlendModes = new Blend[](
 | 
			
		||||
		{
 | 
			
		||||
		    // 0 - NORMAL
 | 
			
		||||
		    new (dest, index, src, opacity) =>
 | 
			
		||||
@ -596,7 +596,7 @@ namespace Strawberry
 | 
			
		||||
					dest[index + 3] = a;
 | 
			
		||||
		        }
 | 
			
		||||
		    }
 | 
			
		||||
		};
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		[Inline]
 | 
			
		||||
		private static int MUL_UN8(int a, int b)
 | 
			
		||||
 | 
			
		||||
@ -229,7 +229,7 @@ namespace Strawberry
 | 
			
		||||
				{
 | 
			
		||||
					let name = scope String();
 | 
			
		||||
					type.GetName(name);
 | 
			
		||||
					let error = Calc.StringArgs("{0} type arguments not supported in commands.", scope Object[] { name });
 | 
			
		||||
					let error = Calc.StringArgs("{0} type arguments not supported in commands.", scope Object[]({ name }));
 | 
			
		||||
					Runtime.FatalError(error);
 | 
			
		||||
				}
 | 
			
		||||
				
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user