aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/curses/PDCurses/sdl1/pdcutil.c
blob: b2d84045ffe1af901684b9311af0092907718aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Public Domain Curses */

#include "pdcsdl.h"

RCSID("$Id: pdcutil.c,v 1.6 2008/07/14 04:24:52 wmcbrine Exp $")

void PDC_beep(void)
{
    PDC_LOG(("PDC_beep() - called\n"));
}

void PDC_napms(int ms)
{
    PDC_LOG(("PDC_napms() - called: ms=%d\n", ms));

    PDC_update_rects();
    SDL_Delay(ms);
}

const char *PDC_sysname(void)
{
    return "SDL";
}