- Fixed MP3 play bug on the psp. MP3 files need to have NO Id3v2 tag, or they won't play. Also, volume control is broken
- added dt to moving W's easter egg movement.
- Added fullscreen for windows version
- other stuff ?
This commit is contained in:
wagic.the.homebrew
2008-11-19 12:21:23 +00:00
parent 2434571fa2
commit 349de34106
27 changed files with 1270 additions and 1012 deletions

View File

@@ -36,7 +36,7 @@
#include <psprtc.h>
#include "JAudio.h"
#include "JCooleyesMP3.h"
#include "JMP3.h"
#endif
@@ -47,11 +47,12 @@ class JMusic
public:
JMusic();
~JMusic();
void Update();
#if defined (WIN32) || defined (LINUX)
FSOUND_SAMPLE *mTrack; // MP3 needed to be of "sample" type for FMOD, FMUSIC_MODULE is for MODs
#else
JCooleyesMP3* mTrack;
JMP3* mTrack;
#endif
};