mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 10:41:15 +00:00
Fix
This commit is contained in:
parent
b3cb59ae56
commit
05c926ba5a
@ -709,11 +709,12 @@ MxS32 LegoOmni::GetCurrPathInfo(LegoPathBoundary** p_path, MxS32& p_value)
|
|||||||
// FUNCTION: LEGO1 0x1005b430
|
// FUNCTION: LEGO1 0x1005b430
|
||||||
const char* LegoOmni::FindScript(MxU32 p_index)
|
const char* LegoOmni::FindScript(MxU32 p_index)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < 19; i++) {
|
for (MxS32 i = 0; i < 19; i++) {
|
||||||
if (m_scripts[i].m_index == p_index) {
|
if (m_scripts[i].m_index == p_index) {
|
||||||
return m_scripts[i].m_key;
|
return m_scripts[i].m_key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user