724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever
|
UnscramblePic.bas - Rotate picture pieces puzzle
|
|
07-14-2023, 02:50 PM
07-14-2023, 03:17 PM
With Steffan-68's fix. It works great! Thanks, Dav.
07-15-2023, 06:07 PM
Thanks, GareBare!
I have edited all my programs found here on the forum to fix the _INFLATE error in the BASIMAGE created Subs. Also -- I've been trying to narrow down in my code exactly what is causes the _INFLATE error. _INFLATE works on most of my programs without needing the 2nd parameter given. It seems _INFLATE only needs it (m.SIZE) only in my BASIMAGE SUBs. Other routines I use _INFLATE don't given the error (like SUBS made with the BASFILE creator). I thought perhaps the error may happen only when using _MEM stuff (like BASIMAGE uses), but that doesn't look like it - - the example below does what a BASIMAGE SUB does, but m.SIZE is not required for _INFLATE to work here. Wonder why _INFLATE fails in in the BASIMAGE created Subs? _INFLATE works correct here. m.SIZE not needed. Code: (Select All)
- Dav
07-15-2023, 07:12 PM
(07-15-2023, 06:07 PM)Dav Wrote: Thanks, GareBare! Here's the answer I got back then. [quote pid="15751" dateline="1683562805"] (05-07-2023, 10:29 PM)DSMan195276 Wrote:We're investigating(05-07-2023, 05:16 AM)Steffan-68 Wrote:[quote pid="15721" dateline="1683475272"] It seems like an issue with the change from `zlib` to `miniz`. Your data doesn't successfully decompress with either library, but `zlib` would give you back the partially decompressed data and the correct length of it, where-as `miniz` doesn't give the length of the partially-decompressed data so `btemp$` has the wrong length.Unfortunately `_Inflate$()` doesn't give an error if the decompression fails so you had no way to know. It really should error, but we probably can't make that change now so we're looking at a fix for `miniz` to give you the correct size. As an alternative to waiting, you code will work in v3.7.0 if you give `_Inflate$()` the size parameter, so `btemp$ = _Inflate$(btemp$, m.SIZE)`. [/quote] [/quote] |
|
« Next Oldest | Next Newest »
|
| Possibly Related Threads… | |||||
| Thread | Author | Replies | Views | Last Post | |
| 2048 Puzzle | Dav | 42 | 6,439 |
10-27-2024, 10:08 AM Last Post: bplus |
|
| Classic 15 puzzle | Dav | 5 | 1,107 |
10-15-2024, 01:08 AM Last Post: bplus |
|
| Simple Sudoku puzzle (updated with 500 puzzles) | Dav | 7 | 2,118 |
06-12-2024, 05:43 PM Last Post: Dav |
|
| RocoLoco - Row & Column math puzzle game. | Dav | 3 | 1,327 |
06-07-2024, 12:11 PM Last Post: Dav |
|
| Make5 - Board clearing puzzle game | Dav | 9 | 2,164 |
07-15-2023, 01:47 AM Last Post: Dav |
|
Users browsing this thread: 1 Guest(s)


It seems like an issue with the change from `zlib` to `miniz`. Your data doesn't successfully decompress with either library, but `zlib` would give you back the partially decompressed data and the correct length of it, where-as `miniz` doesn't give the length of the partially-decompressed data so `btemp$` has the wrong length.