use real_ functions

This commit is contained in:
FunkyFr3sh 2024-03-20 05:41:42 +01:00
parent 871ccbf196
commit c8d4cd997e
2 changed files with 4 additions and 4 deletions

View file

@ -724,7 +724,7 @@ SHORT WINAPI fake_GetKeyState(int nVirtKey)
return 0;
}
return GetKeyState(nVirtKey);
return real_GetKeyState(nVirtKey);
}
SHORT WINAPI fake_GetAsyncKeyState(int vKey)
@ -735,7 +735,7 @@ SHORT WINAPI fake_GetAsyncKeyState(int vKey)
return 0;
}
return GetAsyncKeyState(vKey);
return real_GetAsyncKeyState(vKey);
}
int WINAPI fake_GetDeviceCaps(HDC hdc, int index)