summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Thruster.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-02-18 23:54:30 +0100
committerAki <please@ignore.pl>2022-02-18 23:54:30 +0100
commit0052edae47d1e6ae613497c524719eff5838f52a (patch)
tree3ba92a7846374ba274cba38d924e65f7c2ceb344 /Stars45/Thruster.cpp
parent2ae135bbe43065978a4659278d18d9533d8a3b27 (diff)
downloadstarshatter-0052edae47d1e6ae613497c524719eff5838f52a.zip
starshatter-0052edae47d1e6ae613497c524719eff5838f52a.tar.gz
starshatter-0052edae47d1e6ae613497c524719eff5838f52a.tar.bz2
Switched to use GetIntance for Game instead of static methods
Diffstat (limited to 'Stars45/Thruster.cpp')
-rw-r--r--Stars45/Thruster.cpp6
1 files changed, 3 insertions, 3 deletions
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();