You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
430 B
C
30 lines
430 B
C
/* PDCurses */
|
|
|
|
#include "pdcgl.h"
|
|
|
|
void PDC_beep(void)
|
|
{
|
|
PDC_LOG(("PDC_beep() - called\n"));
|
|
}
|
|
|
|
void PDC_napms(int ms)
|
|
{
|
|
PDC_LOG(("PDC_napms() - called: ms=%d\n", ms));
|
|
|
|
while (ms > 50)
|
|
{
|
|
PDC_pump_and_peep();
|
|
SDL_Delay(50);
|
|
ms -= 50;
|
|
}
|
|
PDC_pump_and_peep();
|
|
SDL_Delay(ms);
|
|
}
|
|
|
|
const char *PDC_sysname(void)
|
|
{
|
|
return "OpenGL";
|
|
}
|
|
|
|
enum PDC_port PDC_port_val = PDC_PORT_OPENGL;
|