+2014-10-13
+ * added automatic detection of normal/steel character elements in level
+ editor when drawing text (depending on currently selected element)
+
2014-10-13
* eliminated historical ISO-8859-1 characters from source code files
(but still using them internally for special character encodings)
case TEXT_WRITECHAR:
if (letter_element >= EL_CHAR_START && letter_element <= EL_CHAR_END)
{
+ if (new_element1 >= EL_STEEL_CHAR_START &&
+ new_element1 <= EL_STEEL_CHAR_END)
+ letter_element = letter_element - EL_CHAR_START + EL_STEEL_CHAR_START;
+
delete_buffer[sx - start_sx] = Feld[lx][ly];
Feld[lx][ly] = letter_element;