mirror of
https://github.com/zeldaret/tp
synced 2026-05-31 09:22:07 -04:00
setFadeColor fix, some d_msg_flow functions (#339)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user