this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

updated pkpy to v2.0.4 (#2730)

* updated pkpy to v2.0.4

* lz4 fix

* fixed some return val

* fix cmake issue

authored by

PrimedErwin and committed by
GitHub
2027e28e 028a1182

+4
+1
.gitmodules
··· 89 89 [submodule "vendor/pocketpy"] 90 90 path = vendor/pocketpy 91 91 url = https://github.com/PrimedErwin/pocketpy.git 92 + shallow = true
+1
cmake/pocketpy.cmake
··· 6 6 message("BUILD_WITH_PYTHON: ${BUILD_WITH_PYTHON}") 7 7 if(BUILD_WITH_PYTHON) 8 8 option(PK_ENABLE_OS "" OFF) 9 + option(PK_BUILD_MODULE_LZ4 "" OFF) 9 10 10 11 if(NOT WIN32) 11 12 option(PK_BUILD_WITH_IPO "" OFF)
+2
src/api/python.c
··· 136 136 137 137 color = py_toint(py_arg(0)); 138 138 core->api.cls(tic, color); 139 + py_assign(py_retval(), py_None()); 139 140 return true; 140 141 } 141 142 ··· 172 173 return TypeError("The given argument is not int or list"); 173 174 174 175 core->api.spr(tic, spr_id, x, y, w, h, colors, color_count, scale, flip, rotate); 176 + py_assign(py_retval(), py_None()); 175 177 return true; 176 178 } 177 179