aboutsummaryrefslogtreecommitdiff
path: root/sources/TZR_IsKeyUp.c
blob: a7471a727bd2bdf557639fd9e51ba16bcab83ec9 (plain)
1
2
3
4
5
6
7
#include "TZR_keystate.h"

bool TZR_IsKeyUp(int scancode)
{
	const TZR_KeyState state = TZR_GetKeyState(scancode);
	return (state == TZR_KEYSTATE_UP || state == TZR_KEYSTATE_RELEASE);
}