Skip to content

Commit

Permalink
fix for missing text in menus
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolan Poe committed Oct 26, 2013
1 parent 12cf8b4 commit 720ef26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified MinerWars2081.suo
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static DepthStencilState Default
StencilPass = StencilOperation.Replace,
TwoSidedStencilMode = false,
StencilMask = int.MaxValue,
StencilWriteMask = 0
StencilWriteMask = int.MaxValue
};
}

Expand Down Expand Up @@ -100,7 +100,7 @@ public static DepthStencilState None
StencilPass = StencilOperation.Keep,
TwoSidedStencilMode = false,
StencilMask = int.MaxValue,
StencilWriteMask = 0
StencilWriteMask = int.MaxValue
};
}

Expand Down Expand Up @@ -158,7 +158,7 @@ public DepthStencilState()
StencilPass = StencilOperation.Keep;
TwoSidedStencilMode = false;
StencilMask = int.MaxValue;
StencilWriteMask = 0;
StencilWriteMask = int.MaxValue;
}

// Summary:
Expand Down

0 comments on commit 720ef26

Please sign in to comment.