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/LandingGear.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Stars45/LandingGear.cpp') diff --git a/Stars45/LandingGear.cpp b/Stars45/LandingGear.cpp index 934ac76..086b4af 100644 --- a/Stars45/LandingGear.cpp +++ b/Stars45/LandingGear.cpp @@ -22,6 +22,7 @@ #include "Scene.h" #include "Sound.h" #include "Game.h" +#include "ContentBundle.h" static Sound* gear_transit_sound = 0; @@ -31,8 +32,8 @@ LandingGear::LandingGear() : System(MISC_SYSTEM, 0, "Landing Gear", 1, 1, 1, 1), state(GEAR_UP), transit(0), ngear(0), clearance(0) { - name = Game::GetInstance()->GetText("sys.landing-gear"); - abrv = Game::GetInstance()->GetText("sys.landing-gear.abrv"); + name = ContentBundle::GetInstance()->GetText("sys.landing-gear"); + abrv = ContentBundle::GetInstance()->GetText("sys.landing-gear.abrv"); for (int i = 0; i < MAX_GEAR; i++) { models[i] = 0; -- cgit v1.1