瀏覽代碼

Cleanups.

Mark Sibly 8 年之前
父節點
當前提交
4c222e9f59
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      modules/std/graphics/pixmap.monkey2

+ 4 - 4
modules/std/graphics/pixmap.monkey2

@@ -163,8 +163,8 @@ Class Pixmap Extends Resource
 			p[1]=color.g * 255
 			p[2]=color.b * 255
 			p[3]=color.a * 255
-		Default
-			Assert( False )
+'		Default
+'			Assert( False )
 		End
 	End
 
@@ -198,8 +198,8 @@ Class Pixmap Extends Resource
 			Return New Color( p[0]/255.0,p[1]/255.0,p[2]/255.0,1 )
 		Case Format.RGBA32
 			Return New Color( p[0]/255.0,p[1]/255.0,p[2]/255.0,p[3]/255.0 )
-		Default
-			Assert( False )
+'		Default
+'			Assert( False )
 		End
 		Return Color.None
 	End