I created a pre-alpha demo for people to test out, but when people try to run the program (and they run it on Windows 10, PC) they get a "Can't create memblock 100007 from image 100007, failed to get image data in Small_Functions.agc at line 82"
The program runs fine for me. Even with just the .EXE file and media folders. What's the usual culprit on their end or what I may have overlooked?
here's the code of the routine giving the troubles:
function pickColor(X as integer,Y as integer)
tMemblock as integer
red as integer
green as integer
blue as integer
rgb$ as string
Render()
tImage=getImage(x,y,1,1)
tMemblock=CreateMemblockfromImage(tImage)
red=GetMemblockbyte(tMemblock,12)
green=GetMemblockbyte(tMemblock,13)
blue=GetMemblockbyte(tMemblock,14)
rgb$=str(red)+","+str(green)+","+str(blue)
deletememblock(tMemblock)
deleteimage(tImage)
endfunction rgb$
CODE HARD STUDIOS YOUTUBE CHANNEL: [link]https://www.youtube.com/channel/UCT6j3UphfDRcpJ0S444rnFA[/link]