CENTER_* -> SCREEN_CENTER

This commit is contained in:
Chris Danford
2004-11-05 06:35:10 +00:00
parent 3d084e2a2c
commit 72bd480883
27 changed files with 73 additions and 73 deletions
+2 -2
View File
@@ -178,9 +178,9 @@ void Lua::UpdateGlobals()
lua_setglobal( L, "SCREEN_TOP" );
lua_pushnumber( L, SCREEN_BOTTOM );
lua_setglobal( L, "SCREEN_BOTTOM" );
lua_pushnumber( L, CENTER_X );
lua_pushnumber( L, SCREEN_CENTER_X );
lua_setglobal( L, "SCREEN_CENTER_X" );
lua_pushnumber( L, CENTER_Y );
lua_pushnumber( L, SCREEN_CENTER_Y );
lua_setglobal( L, "SCREEN_CENTER_Y" );
}