From 0052edae47d1e6ae613497c524719eff5838f52a Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 18 Feb 2022 23:54:30 +0100 Subject: Switched to use GetIntance for Game instead of static methods --- Stars45/Thruster.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Stars45/Thruster.cpp') diff --git a/Stars45/Thruster.cpp b/Stars45/Thruster.cpp index bc236bf..f8e1af1 100644 --- a/Stars45/Thruster.cpp +++ b/Stars45/Thruster.cpp @@ -66,8 +66,8 @@ Thruster::Thruster(int dtype, double max_thrust, float flare_scale) ship(0), thrust(1.0f), scale(flare_scale), avail_x(1.0f), avail_y(1.0f), avail_z(1.0f) { - name = Game::GetText("sys.thruster"); - abrv = Game::GetText("sys.thruster.abrv"); + name = Game::GetInstance()->GetText("sys.thruster"); + abrv = Game::GetInstance()->GetText("sys.thruster.abrv"); power_flags = POWER_WATTS; @@ -457,7 +457,7 @@ Thruster::ExecTrans(double x, double y, double z) CameraDirector* cam_dir = CameraDirector::GetInstance(); // no sound when paused! - if (!Game::Paused() && cam_dir && cam_dir->GetCamera()) { + if (!Game::GetInstance()->Paused() && cam_dir && cam_dir->GetCamera()) { if (!thruster_sound) { if (thruster_resource) thruster_sound = thruster_resource->Duplicate(); -- cgit v1.1