From 69e57a659eabc81663898e868c0bfadc4e1a67e4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 16 Feb 2005 02:45:23 +0000 Subject: [PATCH] GetMachineProfile --- stepmania/src/ProfileManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index 22e84b7923..84e6096f3a 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -542,6 +542,7 @@ public: static int IsUsingProfile( T* p, lua_State *L ) { lua_pushboolean(L, p->IsUsingProfile((PlayerNumber)IArg(1)) ); return 1; } static int GetProfile( T* p, lua_State *L ) { p->GetProfile((PlayerNumber)IArg(1))->PushSelf(L); return 1; } + static int GetMachineProfile( T* p, lua_State *L ) { p->GetMachineProfile()->PushSelf(L); return 1; } static void Register(lua_State *L) {