1
0
forked from 0ad/0ad

wchar_t/etc fixes

This was SVN commit r688.
This commit is contained in:
Ykkrosh 2004-07-10 20:25:20 +00:00
parent c00e774089
commit 5c4699d7dc

View File

@ -156,8 +156,8 @@ bool CObjectEntry::Load(const char* filename)
}
// Define all the elements and attributes used in the XML file
#define EL(x) int el_##x = XeroFile.getElementID(L#x)
#define AT(x) int at_##x = XeroFile.getAttributeID(L#x)
#define EL(x) int el_##x = XeroFile.getElementID(#x)
#define AT(x) int at_##x = XeroFile.getAttributeID(#x)
EL(name);
EL(modelname);
EL(texturename);