mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-17 05:21:15 +00:00
Rename FUN_100a81b0 to ReportError
This commit is contained in:
parent
93a0fab59a
commit
9175ed23ed
@ -61,7 +61,7 @@ TextureHandler g_textureHandler = NULL;
|
|||||||
// FUNCTION: LEGO1 0x100a81b0
|
// FUNCTION: LEGO1 0x100a81b0
|
||||||
// FUNCTION: BETA10 0x101898c0
|
// FUNCTION: BETA10 0x101898c0
|
||||||
// FUNCTION: ALPHA 0x100bb1c0
|
// FUNCTION: ALPHA 0x100bb1c0
|
||||||
void LegoROI::FUN_100a81b0(const LegoChar* p_error, ...)
|
void LegoROI::ReportError(const LegoChar* p_error, ...)
|
||||||
{
|
{
|
||||||
// Probably a printf-like debug function that was removed early.
|
// Probably a printf-like debug function that was removed early.
|
||||||
// No known implementation in any of the binaries.
|
// No known implementation in any of the binaries.
|
||||||
@ -418,7 +418,7 @@ LegoResult LegoROI::ApplyChildAnimationTransformation(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
FUN_100a81b0("%s ROI Not found\n", name);
|
ReportError("%s ROI Not found\n", name);
|
||||||
#ifdef BETA10
|
#ifdef BETA10
|
||||||
_RPT1(_CRT_ASSERT, "%s ROI Not Found", name);
|
_RPT1(_CRT_ASSERT, "%s ROI Not Found", name);
|
||||||
// Note that the macro inserts an INT3, which breaks the assumption that INT3
|
// Note that the macro inserts an INT3, which breaks the assumption that INT3
|
||||||
|
|||||||
@ -63,7 +63,7 @@ class LegoROI : public ViewROI {
|
|||||||
void SetDisplayBB(int p_displayBB);
|
void SetDisplayBB(int p_displayBB);
|
||||||
|
|
||||||
static LegoResult CreateLocalTransform(LegoAnimNodeData* p_data, LegoTime p_time, Matrix4& p_matrix);
|
static LegoResult CreateLocalTransform(LegoAnimNodeData* p_data, LegoTime p_time, Matrix4& p_matrix);
|
||||||
static void FUN_100a81b0(const LegoChar* p_error, ...);
|
static void ReportError(const LegoChar* p_error, ...);
|
||||||
static void configureLegoROI(int p_roi);
|
static void configureLegoROI(int p_roi);
|
||||||
static void SetColorOverride(ColorOverride p_colorOverride);
|
static void SetColorOverride(ColorOverride p_colorOverride);
|
||||||
static LegoBool GetRGBAColor(const LegoChar* p_name, float& p_red, float& p_green, float& p_blue, float& p_alpha);
|
static LegoBool GetRGBAColor(const LegoChar* p_name, float& p_red, float& p_green, float& p_blue, float& p_alpha);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user