Hello,
I think that I found an issue with PmmC 3.1 and 3.2 for my uLCD24-PT GFX. Here is a short piece of code which works fine with PmmC 2.9 or 3.0, but not with PmmC 3.1 or 3.2 :
#platform "uLCD-24PT_GFX2"
func main()
var disk;
putstr("Mounting...\n");
if (!(disk:=file_Mount()))
while(!(disk :=file_Mount()))
putstr("Drive not mounted...");
pause(200);
gfx_Cls();
pause(200);
wend
endif
file_PlayWAV("ding.wav");
while (snd_Playing());
repeat
forever
endfunc
The wav file is correctly heard with PmmC 2.9 or 3.0, but there is no sound with PmmC 3.1 or 3.2.
Thank you for your support on this problem.
I think that I found an issue with PmmC 3.1 and 3.2 for my uLCD24-PT GFX. Here is a short piece of code which works fine with PmmC 2.9 or 3.0, but not with PmmC 3.1 or 3.2 :
#platform "uLCD-24PT_GFX2"
func main()
var disk;
putstr("Mounting...\n");
if (!(disk:=file_Mount()))
while(!(disk :=file_Mount()))
putstr("Drive not mounted...");
pause(200);
gfx_Cls();
pause(200);
wend
endif
file_PlayWAV("ding.wav");
while (snd_Playing());
repeat
forever
endfunc
The wav file is correctly heard with PmmC 2.9 or 3.0, but there is no sound with PmmC 3.1 or 3.2.
Thank you for your support on this problem.
Comment