cleanup arg order

This commit is contained in:
Glenn Maynard
2006-09-26 08:54:54 +00:00
parent 5d1b947002
commit f567a0fd28
19 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -81,9 +81,9 @@ void CourseEntryDisplay::SetDifficulty( PlayerNumber pn, const RString &text, Di
return;
Lua *L = LUA->Get();
LuaHelpers::Push( dc, L );
LuaHelpers::Push( L, dc );
m_textDifficultyNumber[pn].m_pLuaInstance->Set( L, "Difficulty" );
LuaHelpers::Push( dc, L );
LuaHelpers::Push( L, dc );
m_textFoot[pn].m_pLuaInstance->Set( L, "Difficulty" );
LUA->Release(L);