It's definitely got the right case.
and the files are definitely in the correct location in the APK
One possibility I just thought of, though, is because the strings aren't hard-coded. The file names are loaded from other files, which may have some sort of affect on it.
Here's my code:
/*
ques declared as dim ques[600] as questions
type questions
q$
a1$
a2$
a3$
c as string
endtype
q=question
a1/2/3 = 3 different possible answers (1 is always the correct answer)
c=image name
All the data in ques[] is then loaded like this:
amntques=amount of questions (global)
function LoadQuestions()
for k=1 to amntques
f=OpenToRead("questions/"+str(k)+".txt")
ques[k].q$=ReadLine(f)
ques[k].a1$=ReadLine(f)
ques[k].a2$=ReadLine(f)
ques[k].a3$=ReadLine(f)
ques[k].c=ReadLine(f)
`
CloseFile(f)
next
endfunction
*/
if ques[i].c<>"0" and ques[i].c<>""
imm=LoadSprite("questions/img/" + ques[i].c)
SetSpriteSize(imm,GetImageWidth(GetSpriteImageID(imm))/10,GetImageHeight(GetSpriteImageID(imm))/7.5)
SetSpritePosition(imm,98-GetImageWidth(GetSpriteImageID(imm))/10,31.5)
SetTextMaxWidth(answers[1], 98-GetImageWidth(GetSpriteImageID(imm))/10-32)
SetTextMaxWidth(answers[2], 98-GetImageWidth(GetSpriteImageID(imm))/10-32)
endif
EDIT: wow, turns out Jpgs are smaller! I'll use them. I assumed gifs would be because of the indexed colour
The
NEW, awesomest app on Google Play