Corrected an error in the output of string properties when writing
.mag files caused by the last commit---Failure to put a space between the key and the value. Fixed.
This commit is contained in:
parent
9ab7b77dc4
commit
2f00f6d8f1
|
|
@ -4124,6 +4124,7 @@ dbWritePropFunc(key, proprec, cdata)
|
|||
switch (proprec->prop_type)
|
||||
{
|
||||
case PROPERTY_TYPE_STRING:
|
||||
FPUTSR(f, " ");
|
||||
FPUTSR(f, proprec->prop_value.prop_string);
|
||||
break;
|
||||
case PROPERTY_TYPE_INTEGER:
|
||||
|
|
|
|||
Loading…
Reference in New Issue