It looks like to me that you're not using a ,1 at the end of LOAD IMAGE. When you don't use a texture flag of 1 the image is blurred.
set display mode 640,480,16
` Load the hair with texture flag 0 (blurred)
load image "hair1.png",1,0
` Load the hair with texture flag 1 (not blurred)
load image "hair1.png",2,1
` Change the background color and text
ink rgb(0,0,255),0
box 0,0,640,480
ink rgb(255,255,255),0
` Show the blurred image
paste image 1,50,50,1
center text 98,190,"0 - Blurred"
` Show the non-blurred image
paste image 2,200,50,1
center text 248,190,"1 - Not Blurred"
wait key