- [Psy-X] add stub PadInit, PadRead, PadStop

This commit is contained in:
Ilya Shurumov 2021-05-18 14:34:47 +06:00 committed by InspirationByte
parent 3c3ce36385
commit 5946dfaee5

View File

@ -70,3 +70,24 @@ long GetVideoMode()
{
return g_vmode;
}
void PadInit(int mode)
{
PSYX_UNIMPLEMENTED();
// TODO: call PadInitDirect
}
u_long PadRead(int id)
{
PSYX_UNIMPLEMENTED();
// TODO: return pad data as u_long
}
void PadStop(void)
{
PSYX_UNIMPLEMENTED();
// TODO: stop pad reads
}