As I don't have the device I need a bit of help here. So we have no fullscreen, no home and no menu button. Do we have Escape key?
What about others? Is there no way to switch to fullscreen in the UI?
At least on N810 holding Fn worked to print numbers, Fn is not sticky in SDL. Does this work with N900 too?
. I see there is both libvorbisidec and libmad in fremantle extras-devel but libmad is not in extras. FLAC is in both.
As for power management - do SDL apps get lost focus event when the application is switched away or display is blank? How can I blank the display in SDK?
+ else if (event.type == SDL_ACTIVEEVENT) + { + if ( event.active.gain == 0) + { + Mix_PauseMusic(); + while (SDL_WaitEvent(&event) ) + { + if (event.type == SDL_ACTIVEEVENT && event.active.gain == 1 ) break; + if (event.type == SDL_QUIT ) + { + quit = 1; + break; + } + } + } + Mix_ResumeMusic(); + }