summaryrefslogtreecommitdiff
path: root/uisimulator/win32/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/mpeg.c')
-rw-r--r--uisimulator/win32/mpeg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/uisimulator/win32/mpeg.c b/uisimulator/win32/mpeg.c
index 7f7b76aacb..1ff9bce3ff 100644
--- a/uisimulator/win32/mpeg.c
+++ b/uisimulator/win32/mpeg.c
@@ -20,6 +20,8 @@
20/* This file is for emulating some of the mpeg controlling functions of 20/* This file is for emulating some of the mpeg controlling functions of
21 the target */ 21 the target */
22 22
23#include "debug.h"
24
23void mpeg_volume(void) 25void mpeg_volume(void)
24{ 26{
25} 27}
@@ -35,3 +37,12 @@ void mpeg_treble(void)
35void mpeg_stop(void) 37void mpeg_stop(void)
36{ 38{
37} 39}
40
41#ifndef MPEGPLAY
42void mpeg_play(char *tune)
43{
44 DEBUGF("We instruct the MPEG thread to play %s for us\n",
45 tune);
46}
47
48#endif