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/FlightDeck.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Stars45/FlightDeck.cpp') diff --git a/Stars45/FlightDeck.cpp b/Stars45/FlightDeck.cpp index d335376..df48def 100644 --- a/Stars45/FlightDeck.cpp +++ b/Stars45/FlightDeck.cpp @@ -37,6 +37,7 @@ #include "NetUtil.h" #include "Game.h" +#include "ContentBundle.h" #include "Solid.h" #include "Light.h" #include "Sound.h" @@ -188,8 +189,8 @@ FlightDeck::FlightDeck() carrier(0), index(0), num_slots(0), slots(0), cycle_time(5), num_hoops(0), hoops(0), azimuth(0), light(0), num_catsounds(0), num_approach_pts(0) { - name = Game::GetInstance()->GetText("sys.flight-deck"); - abrv = Game::GetInstance()->GetText("sys.flight-deck.abrv"); + name = ContentBundle::GetInstance()->GetText("sys.flight-deck"); + abrv = ContentBundle::GetInstance()->GetText("sys.flight-deck.abrv"); } // +----------------------------------------------------------------------+ -- cgit v1.1