Skip to content

Commit

Permalink
slight things i noticed while working on newpoking
Browse files Browse the repository at this point in the history
that color one made me cringe
  • Loading branch information
Lord-Zedd committed Oct 27, 2024
1 parent d0b8f47 commit ebbadae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<TextBlock Grid.Row="1" Style="{DynamicResource GenericTextblock}" Margin="20,4,4,4">
Note: This tool is only for the main section of tag data in the map file.
<LineBreak/>
Certain tags or data can outside of this area and will not be accessible.
Certain tags or data can fall outside of this area and will not be accessible.
</TextBlock>
</Grid>
</UserControl>
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void VisitColourFloat(ColorData field)
_writer.WriteFloat(ColorData.ByteToFloat(field.Value.A));
_writer.WriteFloat(ColorData.ByteToFloat(field.Value.R));
_writer.WriteFloat(ColorData.ByteToFloat(field.Value.G));
_writer.WriteFloat(ColorData.ByteToFloat(field.Value.G));
_writer.WriteFloat(ColorData.ByteToFloat(field.Value.B));
}
else
{
Expand Down

0 comments on commit ebbadae

Please sign in to comment.