As our mutual friend recently pointed out: this project is not const-correct. Taking this as opportunity we should go over the code and find every point where a more modern way can be used, including:
adding const whereever applicable
remove bool_t and replace with bool (defined in the stdbool.h header)
prefer GRect over SDL_Rect as it is closer to this project
Please add additional points to this issue or to the pull request description
As our mutual friend recently pointed out: this project is not const-correct. Taking this as opportunity we should go over the code and find every point where a more modern way can be used, including:
const
whereever applicablebool_t
and replace withbool
(defined in thestdbool.h
header)GRect
overSDL_Rect
as it is closer to this projectPlease add additional points to this issue or to the pull request description