mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 10:37:41 -04:00
Fix compatibility with Python 2.3
This commit is contained in:
@ -239,7 +239,7 @@ PYTHON_GLOBAL_METHOD_DEFINITION(PtSendRTChat, args, "Params: fromPlayer,toPlayer
|
||||
}
|
||||
else if (PyUnicode_Check(message))
|
||||
{
|
||||
Py_ssize_t size = PyUnicode_GetSize(message);
|
||||
int size = PyUnicode_GetSize(message);
|
||||
wchar_t* msg = TRACKED_NEW wchar_t[size + 1]; msg[size] = 0;
|
||||
PyUnicode_AsWideChar((PyUnicodeObject*)message, msg, size);
|
||||
UInt32 retval = cyMisc::SendRTChat(*fromPlayer, toPlayerList, msg, msgFlags);
|
||||
|
Reference in New Issue
Block a user