mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
LegoCameraController: return references to static data in stub functions
This commit is contained in:
parent
33bfba825b
commit
cdb69676f4
@ -25,17 +25,20 @@ void LegoCameraController::FUN_100123e0(Matrix4Data& p_transform, MxU32)
|
||||
// STUB: LEGO1 0x10012740
|
||||
Vector3Data& LegoCameraController::FUN_10012740()
|
||||
{
|
||||
return Vector3Data();
|
||||
static Vector3Data v;
|
||||
return v;
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x100127f0
|
||||
Vector3Data& LegoCameraController::FUN_100127f0()
|
||||
{
|
||||
return Vector3Data();
|
||||
static Vector3Data v;
|
||||
return v;
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x100128a0
|
||||
Vector3Data& LegoCameraController::FUN_100128a0()
|
||||
{
|
||||
return Vector3Data();
|
||||
static Vector3Data v;
|
||||
return v;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user