devnull_foo_bar
Still Fresh
- Joined
- Jan 7, 2008
- Messages
- 3
Hi,
n00b alert! Got an F200 for X-Mas and immediately fell in love with Ruckman. Hence I decided to have a look at Fenix. I'm amazed by how easy it is to pick up and what I managed to learn in one day. Unfortunately I seem to have hit a wall I can't take on my own.
It involves WAV file playback on the F200. It doesn't seem to work on my F200. I compiled a simple little program on my PC using fxc 0.93 that does nothing more than load a wav file and play it back continuously. It works great when I try it out with fxi on my PC.
Although the program starts and quits fine on my GP2X F200 I don't hear any sound! I downloaded the latest (ultimate) fxi for the GP2X with touchscreen support. Anyone an idea what I might be doing wrong? Am I missing something obvious? Thanks in advance for your suggestions!
Here's the code I'm wrote:
PROGRAM WAVTEST;
global
kick;
BEGIN
kick=load_wav("kick.wav");
if (kick == -1)
exit();
end
play_wav(kick, -1);
loop
if (key(_enter))
exit();
end
frame;
end
end
n00b alert! Got an F200 for X-Mas and immediately fell in love with Ruckman. Hence I decided to have a look at Fenix. I'm amazed by how easy it is to pick up and what I managed to learn in one day. Unfortunately I seem to have hit a wall I can't take on my own.
It involves WAV file playback on the F200. It doesn't seem to work on my F200. I compiled a simple little program on my PC using fxc 0.93 that does nothing more than load a wav file and play it back continuously. It works great when I try it out with fxi on my PC.
Although the program starts and quits fine on my GP2X F200 I don't hear any sound! I downloaded the latest (ultimate) fxi for the GP2X with touchscreen support. Anyone an idea what I might be doing wrong? Am I missing something obvious? Thanks in advance for your suggestions!
Here's the code I'm wrote:
PROGRAM WAVTEST;
global
kick;
BEGIN
kick=load_wav("kick.wav");
if (kick == -1)
exit();
end
play_wav(kick, -1);
loop
if (key(_enter))
exit();
end
frame;
end
end