wchar_t/etc fixes

This was SVN commit r690.
This commit is contained in:
Ykkrosh
2004-07-10 20:33:42 +00:00
parent 4769a92894
commit 970685e82c
8 changed files with 190 additions and 117 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ bool CBaseEntity::loadXML( CStr 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(entity);
EL(name);
EL(actor);