forked from metin-server/m2dev-client-src
file encoding to utf-8
This commit is contained in:
@@ -55,9 +55,9 @@ PyObject * packGet(PyObject * poSelf, PyObject * poArgs)
|
||||
if (!PyTuple_GetString(poArgs, 0, &strFileName))
|
||||
return Py_BuildException();
|
||||
|
||||
// 파이썬에서 읽어드리는 패킹 파일은 python 파일과 txt 파일에 한정한다
|
||||
// 파이썬에서 읽어드리는 패킹 파일은 python 파일과 txt 파일에 한정한다
|
||||
const char* pcExt = strrchr(strFileName, '.');
|
||||
if (pcExt) // 확장자가 있고
|
||||
if (pcExt) // 확장자가 있고
|
||||
{
|
||||
if ((stricmp(pcExt, ".py") == 0) ||
|
||||
(stricmp(pcExt, ".pyc") == 0) ||
|
||||
|
||||
Reference in New Issue
Block a user