···121121#define OVR_FN "OVR"
122122123123#define TIC_CALLBACK_LIST(macro) \
124124- macro(TIC_FN, TIC_FN "()", "Main function. It's called at 60 fps (60 times every second).") \
124124+ macro(TIC_FN, TIC_FN "()", "Main function. It's called at " DEF2STR(TIC80_FRAMERATE) \
125125+ "fps (" DEF2STR(TIC80_FRAMERATE) " times every second).") \
125126 macro(SCN_FN, SCN_FN "(row)", "Allows you to execute code between the drawing of each scanline, " \
126127 "for example, to manipulate the palette.") \
127128 macro(OVR_FN, OVR_FN "()", "Called after each frame;" \
···159160 \
160161 "Clear the screen.\n" \
161162 "When called this function clear all the screen using the color passed as argument.\n" \
162162- "If no parameter is passed first color (0) is used.\n" \
163163- "\nTips: Use a color over 15 to see some special fill pattern.", \
163163+ "If no parameter is passed first color (0) is used.", \
164164 1, \
165165 void, \
166166 tic_mem*, u8 color) \