From 70cebc91e1048bed0a57a5baea058ebe254b8e50 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Oct 2006 05:58:27 +0000 Subject: [PATCH] IsRegisteredType -> IsRegisteredClass --- stepmania/src/ActorUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index 5f8585ff02..e4df9a87ba 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -651,7 +651,7 @@ namespace LuaHelpers::Push( L, sPath ); return 1; } - int IsRegisteredType( lua_State *L ) + int IsRegisteredClass( lua_State *L ) { lua_pushboolean( L, IsRegistered(SArg(1)) ); return 1; @@ -661,7 +661,7 @@ namespace { LIST_METHOD( GetFileType ), LIST_METHOD( ResolvePath ), - LIST_METHOD( IsRegisteredType ), + LIST_METHOD( IsRegisteredClass ), { NULL, NULL } }; }