libretro build fix

This commit is contained in:
Flyinghead 2021-09-07 17:18:56 +02:00
parent a4e715fa71
commit 6d6f3d38d4
1 changed files with 4 additions and 1 deletions

View File

@ -608,8 +608,11 @@ namespace ggpo
void stopSession() {
}
void getInput(u32 out_kcode[4]) {
void getInput(u32 out_kcode[4], u8 out_lt[4], u8 out_rt[4])
{
memcpy(out_kcode, kcode, sizeof(kcode));
memcpy(out_lt, lt, sizeof(lt));
memcpy(out_rt, rt, sizeof(rt));
}
void nextFrame() {