fix -Wold-style-declaration

This commit is contained in:
Chu'vok
2024-09-18 12:36:14 +02:00
parent 5432245bc8
commit 11be9588f4

2
tim.h
View File

@@ -891,7 +891,7 @@ static inline bool is_event_key(int type, int32_t key) {
}
// returns true if event was press of key
static bool inline is_key_press(int32_t key) {
static inline bool is_key_press(int32_t key) {
return is_event_key(KEY_EVENT, key);
}