From 0da933a0146a0689546b21231e14f2dfc2bc14e8 Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 23 Feb 2022 23:36:37 +0100 Subject: Switched to use ContentBundle's GetText --- Stars45/CmpnScreen.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Stars45/CmpnScreen.cpp') diff --git a/Stars45/CmpnScreen.cpp b/Stars45/CmpnScreen.cpp index 9d33499..44a3863 100644 --- a/Stars45/CmpnScreen.cpp +++ b/Stars45/CmpnScreen.cpp @@ -29,6 +29,7 @@ #include "MusicDirector.h" #include "Game.h" +#include "ContentBundle.h" #include "Video.h" #include "Screen.h" #include "Window.h" @@ -233,8 +234,8 @@ CmpnScreen::ExecFrame() if (player->Trained() >= all_missions && player->Trained() < 255) { player->SetTrained(255); - cmd_msg_dlg->Title()->SetText(Game::GetInstance()->GetText("CmpnScreen.training")); - sprintf_s(msg_info, Game::GetInstance()->GetText("CmpnScreen.congrats"), + cmd_msg_dlg->Title()->SetText(ContentBundle::GetInstance()->GetText("CmpnScreen.training")); + sprintf_s(msg_info, ContentBundle::GetInstance()->GetText("CmpnScreen.congrats"), Player::RankName(player->Rank()), player->Name().data()); -- cgit v1.1