diff --git a/src/game/clock.h b/src/game/clock.h index 3d6a2096b..17b815a17 100644 --- a/src/game/clock.h +++ b/src/game/clock.h @@ -39,8 +39,7 @@ bool Clock_CheckElapsedMilliseconds(CLOCK_TIMER *timer, int32_t wait); // The same as Clock_CheckElapsedMilliseconds, except does not scale the result // by the turbo cheat multiplier. -bool Clock_CheckElapsedRawMilliseconds( - CLOCK_TIMER *const timer, const int32_t how_often); +bool Clock_CheckElapsedRawMilliseconds(CLOCK_TIMER *timer, int32_t how_often); void Clock_GetDateTime(char *date_time); diff --git a/src/game/requester.h b/src/game/requester.h index e43a53472..ad0c2a30e 100644 --- a/src/game/requester.h +++ b/src/game/requester.h @@ -10,8 +10,7 @@ void Requester_ClearTextstrings(REQUEST_INFO *req); int32_t Requester_Display(REQUEST_INFO *req); void Requester_SetHeading(REQUEST_INFO *req, const char *string); void Requester_ChangeItem( - REQUEST_INFO *req, int32_t idx, bool is_blocked, const char *const fmt, - ...); + REQUEST_INFO *req, int32_t idx, bool is_blocked, const char *fmt, ...); void Requester_AddItem( - REQUEST_INFO *req, bool is_blocked, const char *const fmt, ...); + REQUEST_INFO *req, bool is_blocked, const char *fmt, ...); void Requester_SetSize(REQUEST_INFO *req, int32_t max_lines, int16_t y); diff --git a/subprojects/libtrx b/subprojects/libtrx index 77e0cbab2..c375f476d 160000 --- a/subprojects/libtrx +++ b/subprojects/libtrx @@ -1 +1 @@ -Subproject commit 77e0cbab276bf83ab242fbfa4335a8379e5ac2f0 +Subproject commit c375f476d89fb2a4b86e52da308b432b6586690e diff --git a/tools/additional_lint b/tools/additional_lint index 91575d6b5..722353d38 100755 --- a/tools/additional_lint +++ b/tools/additional_lint @@ -1,4 +1,4 @@ #!/usr/bin/env python3 from libtrx.cli.additional_lint import run_script -run_script(ignored_extensions=[".patch", ".bin"]) +run_script(ignored_patterns=["*.patch", "*.bin", "gl_core_3_3.h"])