diff --git a/OpenRA.Game/Chrome.cs b/OpenRA.Game/Chrome.cs index 1f8003e916..505d2b40ba 100644 --- a/OpenRA.Game/Chrome.cs +++ b/OpenRA.Game/Chrome.cs @@ -423,7 +423,7 @@ namespace OpenRA } - public void DrawMainMenu(World world) { rootWidget.Draw(); } + public void DrawWidgets(World world) { rootWidget.Draw(); } public void DrawLobby( World world ) { diff --git a/OpenRA.Game/Graphics/Viewport.cs b/OpenRA.Game/Graphics/Viewport.cs index fc234dbaa9..c389c576fd 100644 --- a/OpenRA.Game/Graphics/Viewport.cs +++ b/OpenRA.Game/Graphics/Viewport.cs @@ -83,7 +83,7 @@ namespace OpenRA.Graphics { // what a hack. as soon as we have some real chrome stuff... - Game.chrome.DrawMainMenu(world); + Game.chrome.DrawWidgets(world); switch( Game.orderManager.Connection.ConnectionState ) { case ConnectionState.Connecting: