summaryrefslogtreecommitdiff
path: root/BitmapChar.cs
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-05-21 02:54:04 +0000
committerIan C <ianc@noddybox.co.uk>2005-05-21 02:54:04 +0000
commit326ebe083338e53e261a513418a418413a63bd2f (patch)
treec3332f3a114c66e1d7f021e6537319b4356f24a4 /BitmapChar.cs
parent600287f275063dde1ea6f55fd9aa5247d27256cf (diff)
Improved font import slightly. Fixed non-clearing of changed flags when saving.
Diffstat (limited to 'BitmapChar.cs')
-rw-r--r--BitmapChar.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/BitmapChar.cs b/BitmapChar.cs
index 3033fee..649c135 100644
--- a/BitmapChar.cs
+++ b/BitmapChar.cs
@@ -287,6 +287,8 @@ namespace BitmapFontEd
stream.WriteByte(m_data[x,y].A);
}
}
+
+ m_changed=false;
}
public static BitmapChar Input(Stream stream)
@@ -416,6 +418,8 @@ namespace BitmapFontEd
{
c.Output(stream);
}
+
+ m_changed=false;
}
public static BitmapCharList Input(Stream stream)