mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 20:43:37 +01:00
fxconv: make bopti-fx image data a pointer
This commit is contained in:
parent
45fd52444f
commit
ecf04cb634
1 changed files with 4 additions and 1 deletions
|
@ -514,7 +514,10 @@ def convert_bopti_fx(input, params):
|
||||||
n += 1
|
n += 1
|
||||||
|
|
||||||
# Generate the object file
|
# Generate the object file
|
||||||
return header + data
|
o = ObjectData()
|
||||||
|
o += header
|
||||||
|
o += ptr(data)
|
||||||
|
return o
|
||||||
|
|
||||||
def _image_project(img, f):
|
def _image_project(img, f):
|
||||||
# New width and height
|
# New width and height
|
||||||
|
|
Loading…
Reference in a new issue