raylib 5.5.0.2__cp312-cp312-win_amd64.whl → 5.5.0.3__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of raylib might be problematic. Click here for more details.

pyray/__init__.py CHANGED
@@ -126,7 +126,7 @@ def _make_struct_constructor_function(struct):
126
126
  or isinstance(arg, (array, bytes, bytearray, memoryview)))):
127
127
  arg = ffi.from_buffer(field[1].type, arg)
128
128
  modified_args.append(arg)
129
- s = ffi.new(f"struct {struct} *", modified_args)[0]
129
+ s = ffi.new(f"{struct} *", modified_args)[0]
130
130
  global_weakkeydict[s] = modified_args
131
131
  return s
132
132