aboutsummaryrefslogtreecommitdiff
path: root/sword2/speech.h
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/speech.h')
-rw-r--r--sword2/speech.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/sword2/speech.h b/sword2/speech.h
index 3630f56110..f137fdb991 100644
--- a/sword2/speech.h
+++ b/sword2/speech.h
@@ -20,25 +20,26 @@
#ifndef _SPEECH
#define _SPEECH
-//#include "src\driver96.h"
#include "header.h"
+#define MAX_SUBJECT_LIST 30 // is that enough?
-#define MAX_SUBJECT_LIST 30 //is that enough?
+// array of these for subject menu build up
+typedef struct {
+ uint32 res;
+ uint32 ref;
+} _subject_unit;
+// so speech text cleared when running a new start-script
+extern uint32 speech_text_bloc_no;
+extern int16 officialTextNumber;
-typedef struct //array of these for subject menu build up
-{
- uint32 res;
- uint32 ref;
-} _subject_unit;
+extern int32 speechScriptWaiting;
-extern uint32 speech_text_bloc_no; // so speech text cleared when running a new start-script
-extern int16 officialTextNumber;
+//could alternately use logic->looping of course
+extern int choosing;
-extern int32 speechScriptWaiting;
+extern uint32 unpause_zone;
-extern int choosing; //could alternately use logic->looping of course
-extern uint32 unpause_zone;
#endif