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

bool TZR_IsKeyReleased(int scancode)
{
	if (TZR_GetKeyState(scancode) == TZR_KEYSTATE_RELEASE)
		return true;
	return false;
}