summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Thruster.cpp
diff options
context:
space:
mode:
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();