(07-15-2023, 12:50 AM)grymmjack Wrote: This isn't working in QB64 PE v3.8.0
I'm getting:
Memory out of range on line 419:
Code: (Select All)
_MemPut m, m.OFFSET, btemp$: _MemFree m
It's because of my BASIMAGE routine and the _INFLATE issue with QB64PE v3.7 and higher that @Steffan-68 recently brought to my attention. The quick fix is easy however, thanks to Steffan:
Change all the lines that say: btemp$ = _INFLATE$(btemp$)
Into this instead: btemp$ = _INFLATE$(btemp$, m.SIZE)
I'm going to redo my BASIMAGE program to correct this, and update my code that uses SUB's made with it.
- Dav