]> icculus.org git repositories - taylor/freespace2.git/blob - src/movie/movie.cpp
nothing interesting
[taylor/freespace2.git] / src / movie / movie.cpp
1 #include <stdio.h>
2
3 int movie_play(char *filename, int unknown)
4 {
5         fprintf(stderr, "STUB: if movie support existed, you'd be watching %s\n", filename);
6         return 1;
7 }
8
9 int movie_play_two(char *filename1, char *filename2)
10 {
11         fprintf(stderr, "STUB: if movie support existed, you'd be watching %s, followed by %s\n", filename1, filename2);        
12
13         return 1;
14 }