diff --git a/Stub/DiabloUI/selconn.cpp b/Stub/DiabloUI/selconn.cpp index 3942ed4f0..c5a7a6e64 100644 --- a/Stub/DiabloUI/selconn.cpp +++ b/Stub/DiabloUI/selconn.cpp @@ -5,7 +5,7 @@ void selconn_Render() DrawArt(0, 0, &ArtBackground); DrawLogo(); - DrawArtStr(-1, 161, AFT_BIG, AFC_SILVER, "Multi Player Game", JustCentre); + DrawArtStr(0, 161, AFT_BIG, AFC_SILVER, "Multi Player Game", JustCentre); int w = 335; int x = 280; @@ -122,7 +122,7 @@ int __stdcall UiSelectProvider( break; } selconn_Free(); - endMenu = SNetInitializeProvider('SCBL', client_info, user_info, ui_info, file_info); + endMenu = SNetInitializeProvider(provider, client_info, user_info, ui_info, file_info); selconn_Load(); break; } diff --git a/Stub/DiabloUI/selhero.cpp b/Stub/DiabloUI/selhero.cpp index b8bb061db..604524f8c 100644 --- a/Stub/DiabloUI/selhero.cpp +++ b/Stub/DiabloUI/selhero.cpp @@ -47,7 +47,7 @@ void selhero_Render(bool multiPlayer) if (multiPlayer) { title = "Multi Player Characters"; } - DrawArtStr(-1, 161, AFT_BIG, AFC_SILVER, title, JustCentre); + DrawArtStr(0, 161, AFT_BIG, AFC_SILVER, title, JustCentre); DrawArt(30, 211, &ArtHero, heroInfo.heroclass); RenderStats(); @@ -86,7 +86,7 @@ void selhero_Render_Name(bool multiPlayer) title = "New Multi Player Hero"; } - DrawArtStr(-1, 161, AFT_BIG, AFC_SILVER, title, JustCentre); + DrawArtStr(0, 161, AFT_BIG, AFC_SILVER, title, JustCentre); int w = 368; int x = 241; @@ -124,7 +124,7 @@ void selhero_Render_ClassSelector(bool multiPlayer) if (multiPlayer) { title = "New Multi Player Hero"; } - DrawArtStr(-1, 161, AFT_BIG, AFC_SILVER, title, JustCentre); + DrawArtStr(0, 161, AFT_BIG, AFC_SILVER, title, JustCentre); int w = 369; int x = 241; @@ -404,7 +404,7 @@ void selhero_Render_DifficultySelection() DrawArt(0, 0, &ArtBackground); DrawLogo(); - DrawArtStr(-1, 161, AFT_BIG, AFC_SILVER, "Create Game", JustCentre); + DrawArtStr(0, 161, AFT_BIG, AFC_SILVER, "Create Game", JustCentre); int w = 333; int x = 281; @@ -549,7 +549,7 @@ void selhero_Render_GameSelection() DrawArt(0, 0, &ArtBackground); DrawLogo(); - DrawArtStr(-1, 161, AFT_BIG, AFC_SILVER, "Join UPD Game", JustCentre); + DrawArtStr(0, 161, AFT_BIG, AFC_SILVER, "Join UPD Game", JustCentre); int w = 333; int x = 281; diff --git a/Stub/DiabloUI/title.cpp b/Stub/DiabloUI/title.cpp index e63e04628..102fba64f 100644 --- a/Stub/DiabloUI/title.cpp +++ b/Stub/DiabloUI/title.cpp @@ -4,7 +4,8 @@ void title_Render() { DrawArt(0, 0, &ArtBackground); - DrawArtStr(-1, 410, AFT_MED, AFC_SILVER, "Copyright \xA9 1996-2001 Blizzard Entertainment", JustCentre); + DrawArtStr(0, 410, AFT_MED, AFC_SILVER, "Copyright \xA9 1996-2001 Blizzard Entertainment", JustCentre); + DrawLogo(182, LOGO_BIG); }