file encoding to utf-8

This commit is contained in:
d1str4ught
2025-08-19 00:30:50 +02:00
parent be56f3f31a
commit ea712bec83
241 changed files with 1753 additions and 1753 deletions

View File

@@ -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) ||