| author | gazer
<gazer> 2004-07-15 01:43:23 UTC |
| committer | gazer
<gazer> 2004-07-15 01:43:23 UTC |
| parent | 1d487e251349b75a3884dde9e0662e1f885120db |
| FP/src/include/output.h | +2 | -2 |
| FP/src/out/output.c | +8 | -2 |
diff --git a/FP/src/include/output.h b/FP/src/include/output.h index af798b1..8b2dcac 100644 --- a/FP/src/include/output.h +++ b/FP/src/include/output.h @@ -41,8 +41,8 @@ output.h: Free Prince : Output Devices Handler #include <SDL/SDL.h> /* SDL stuff */ /* Text Primitives*/ -void outputDrawText(const char* text, int x, int y); -void outputDrawMessage(const char* text); +void outputDrawText(int x, int y, const char *fmt, ...); +void outputDrawMessage(const char* fmt, ...); /* Sound */ void outputPlayWav(tMemory sound); /* Starts the reproduction of the sample and returns */ diff --git a/FP/src/out/output.c b/FP/src/out/output.c index 33c068b..eab8eae 100644 --- a/FP/src/out/output.c +++ b/FP/src/out/output.c @@ -40,8 +40,14 @@ output.c: Free Prince : Output Devices Handler #include "output.h" /* Text Primitives*/ -void outputDrawText(const char* text, int x, int y) {} -void outputDrawMessage(const char* text) {} +void outputDrawText(int x, int y, const char *fmt, ...) +{ +} + +void outputDrawMessage(const char* fmt, ...) +{ +} + /* Sound */ void outputPlayWav(tMemory sound) {} /* Starts the reproduction of the sample and returns */