mod icon fixup

This commit is contained in:
Chris Danford
2008-12-21 22:16:54 +00:00
parent 22d0b9e53d
commit 4a6c3dc99a
10 changed files with 73 additions and 63 deletions
+3 -3
View File
@@ -435,10 +435,10 @@ namespace
lua_pushboolean( L, IsRegistered(SArg(1)) );
return 1;
}
static int LoadAllCommandsAndSetXYAndOnCommand( lua_State *L )
static int LoadAllCommandsAndSetXY( lua_State *L )
{
Actor *p = Luna<Actor>::check( L, 1 );
ActorUtil::LoadAllCommandsAndSetXYAndOnCommand( p, SArg(2) );
ActorUtil::LoadAllCommandsAndSetXY( p, SArg(2) );
return 0;
}
@@ -447,7 +447,7 @@ namespace
LIST_METHOD( GetFileType ),
LIST_METHOD( ResolvePath ),
LIST_METHOD( IsRegisteredClass ),
LIST_METHOD( LoadAllCommandsAndSetXYAndOnCommand ),
LIST_METHOD( LoadAllCommandsAndSetXY ),
{ NULL, NULL }
};
}