setFadeColor fix, some d_msg_flow functions (#339)

This commit is contained in:
hatal175
2023-05-28 10:21:28 +03:00
committed by GitHub
parent 2baa07dbf6
commit fcb6ae541f
29 changed files with 166 additions and 686 deletions
+6 -1
View File
@@ -87,7 +87,12 @@ inline T cLib_maxLimit(T val, T max) {
}
template <typename T>
T cLib_calcTimer(T* val);
T cLib_calcTimer(T* value) {
if (*value != 0) {
*value = *value - 1;
}
return *value;
}
void MtxInit(void);
void MtxTrans(f32, f32, f32, u8);