mirror of
https://github.com/yawut/SDL.git
synced 2026-08-23 09:15:18 -05:00
Fixed XML elements. Element's end tag is now properly formed.
This commit is contained in:
@@ -234,7 +234,7 @@ XMLCloseElement(const char *tag)
|
||||
TagList *temp = openTag->next;
|
||||
|
||||
memset(buffer, 0, bufferSize);
|
||||
snprintf(buffer, bufferSize, "<%s>", openTag->tag);
|
||||
snprintf(buffer, bufferSize, "</%s>", openTag->tag);
|
||||
logger(buffer);
|
||||
|
||||
const int openTagSize = SDL_strlen(openTag->tag);
|
||||
|
||||
Reference in New Issue
Block a user