Added comments.

This commit is contained in:
n-a-c-h
2005-02-25 01:19:54 +00:00
parent d1e0f6ae81
commit 3d7bffbcb7

View File

@@ -35,7 +35,23 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "gblvars.h" #include "gblvars.h"
#include "asm_call.h" #include "asm_call.h"
#define bool unsigned char
/*
Nach's insane subtitle library for movies files :)
The filename would be gamename.sub in the same directory the ZMV would be in.
If you're playing gamename.zm1, then the sub file will be gamename.su1 etc...
Format of the sub file:
Start Frame:Frame Duration:Message
Example:
1:180:Hi how are you?
300:180:Isn't this cool?
700:180:This is great :)
2500:375:Kill 'em!
3500:20:Did you see this?
*/
struct struct
{ {
@@ -104,6 +120,12 @@ size_t MovieSub_GetDuration()
} }
/////////////////////////////////////////////////////////
extern unsigned int PJoyAOrig, PJoyBOrig, PJoyCOrig, PJoyDOrig, PJoyEOrig; extern unsigned int PJoyAOrig, PJoyBOrig, PJoyCOrig, PJoyDOrig, PJoyEOrig;
extern unsigned int JoyAOrig, JoyBOrig, JoyCOrig, JoyDOrig, JoyEOrig; extern unsigned int JoyAOrig, JoyBOrig, JoyCOrig, JoyDOrig, JoyEOrig;
extern unsigned int MsgCount, MessageOn; extern unsigned int MsgCount, MessageOn;