mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
9 lines
396 B
C
9 lines
396 B
C
#include <assert.h>
|
|
|
|
void DrawTextLineBG(uint8 *dest);
|
|
void DrawMessage(bool beforeMovie);
|
|
void FCEU_DrawRecordingStatus(uint8* XBuf);
|
|
void FCEU_DrawNumberRow(uint8 *XBuf, int *nstatus, int cur);
|
|
void DrawTextTrans(uint8 *dest, uint32 width, uint8 *textmsg, uint8 fgcolor);
|
|
void DrawTextTransWH(uint8 *dest, uint32 width, uint8 *textmsg, uint8 fgcolor, int max_w, int max_h, int border);
|