More messages.

This commit is contained in:
grinvader
2005-03-17 20:01:40 +00:00
parent 104f55792d
commit 5f84ab6293

View File

@@ -955,6 +955,7 @@ char *txtaddextchap = "EXTERNAL CHAPTER ADDED.";
char *txtnomovie = "NO MOVIE PROCESSING."; char *txtnomovie = "NO MOVIE PROCESSING.";
char *txtseeknext = "NEXT CHAPTER LOADED."; char *txtseeknext = "NEXT CHAPTER LOADED.";
char *txtseekprev = "PREVIOUS CHAPTER LOADED."; char *txtseekprev = "PREVIOUS CHAPTER LOADED.";
char *txtseekrecord = "NO SEEKING DURING RECORD.";
void MovieInsertChapter() void MovieInsertChapter()
{ {
@@ -977,24 +978,36 @@ void MovieInsertChapter()
void MovieSeekAhead() void MovieSeekAhead()
{ {
if (MovieProcessing == 1) // replaying only - record can use ZMTs switch (MovieProcessing)
{ {
zmv_next_chapter(); case 1: // replaying ok
Msgptr = txtseeknext; zmv_next_chapter();
Msgptr = txtseeknext;
break;
case 2: // recording will use MZTs
Msgptr = txtseekrecord;
break;
default: // can't seek without a movie
Msgptr = txtnomovie;
} }
else { Msgptr = txtnomovie; }
MessageOn = MsgCount; MessageOn = MsgCount;
} }
void MovieSeekBehind() void MovieSeekBehind()
{ {
if (MovieProcessing == 1) // replaying only - record can use ZMTs switch (MovieProcessing)
{ {
zmv_prev_chapter(); case 1: // replaying ok
Msgptr = txtseekprev; zmv_prev_chapter();
Msgptr = txtseekprev;
break;
case 2: // recording will use MZTs
Msgptr = txtseekrecord;
break;
default: // can't seek without a movie
Msgptr = txtnomovie;
} }
else { Msgptr = txtnomovie; }
MessageOn = MsgCount; MessageOn = MsgCount;
} }