@@ -39,17 +39,17 @@ struct Matrix3x4Data
3939
4040 /// <summary>Draws this node.</summary>
4141 /// <param name="view">The view information.</param>
42- /// <param name="x ">The x coordinate.</param>
43- /// <param name="y ">The y coordinate.</param>
42+ /// <param name="x2 ">The x coordinate.</param>
43+ /// <param name="y2 ">The y coordinate.</param>
4444 /// <returns>The height the node occupies.</returns>
4545 public override int Draw ( ViewInfo view , int x2 , int y2 )
4646 {
47- return DrawMatrixType ( view , x2 , y2 , "Matrix (3x4)" , ( ref int x , ref int y , int defaultX ) =>
47+ return DrawMatrixType ( view , x2 , y2 , "Matrix (3x4)" , ( int defaultX , ref int y ) =>
4848 {
4949 var value = view . Memory . ReadObject < Matrix3x4Data > ( Offset ) ;
5050
5151 y += view . Font . Height ;
52- x = defaultX ;
52+ var x = defaultX ;
5353 x = AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "|" ) ;
5454 x = AddText ( view , x , y , view . Settings . ValueColor , 0 , $ "{ value . _11 , 14 : 0.000} ") ;
5555 x = AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "," ) ;
@@ -58,7 +58,7 @@ public override int Draw(ViewInfo view, int x2, int y2)
5858 x = AddText ( view , x , y , view . Settings . ValueColor , 2 , $ "{ value . _13 , 14 : 0.000} ") ;
5959 x = AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "," ) ;
6060 x = AddText ( view , x , y , view . Settings . ValueColor , 3 , $ "{ value . _14 , 14 : 0.000} ") ;
61- x = AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "|" ) ;
61+ AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "|" ) ;
6262
6363 y += view . Font . Height ;
6464 x = defaultX ;
@@ -70,7 +70,7 @@ public override int Draw(ViewInfo view, int x2, int y2)
7070 x = AddText ( view , x , y , view . Settings . ValueColor , 6 , $ "{ value . _23 , 14 : 0.000} ") ;
7171 x = AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "," ) ;
7272 x = AddText ( view , x , y , view . Settings . ValueColor , 7 , $ "{ value . _24 , 14 : 0.000} ") ;
73- x = AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "|" ) ;
73+ AddText ( view , x , y , view . Settings . NameColor , HotSpot . NoneId , "|" ) ;
7474
7575 y += view . Font . Height ;
7676 x = defaultX ;
0 commit comments