diff options
author | Thomas Fach-Pedersen | 2018-03-18 20:35:28 +0100 |
---|---|---|
committer | Thomas Fach-Pedersen | 2018-03-18 20:36:11 +0100 |
commit | 5f5cee2be3428ae244664401c453e410a7d6baf5 (patch) | |
tree | 642bbaa2deb31c5fb7e4813d6e3421b543a5fa2c /engines/bladerunner/script/ai | |
parent | 21a00458283f12c7bebb473e609c8e6523fae097 (diff) | |
download | scummvm-rg350-5f5cee2be3428ae244664401c453e410a7d6baf5.tar.gz scummvm-rg350-5f5cee2be3428ae244664401c453e410a7d6baf5.tar.bz2 scummvm-rg350-5f5cee2be3428ae244664401c453e410a7d6baf5.zip |
BLADERUNNER: Round coordinates to two decimals
Also fixes a couple of typos.
Diffstat (limited to 'engines/bladerunner/script/ai')
-rw-r--r-- | engines/bladerunner/script/ai/hysteria_patron1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bladerunner/script/ai/hysteria_patron1.cpp b/engines/bladerunner/script/ai/hysteria_patron1.cpp index 44278ac5e9..6eadd74976 100644 --- a/engines/bladerunner/script/ai/hysteria_patron1.cpp +++ b/engines/bladerunner/script/ai/hysteria_patron1.cpp @@ -34,7 +34,7 @@ void AIScriptHysteriaPatron1::Initialize() { _animationNext = 0; Actor_Put_In_Set(kActorHysteriaPatron1, kSetNR03); - Actor_Set_At_XYZ(kActorHysteriaPatron1, 50.0f, -6.5900002f, -1030.0f, 524); + Actor_Set_At_XYZ(kActorHysteriaPatron1, 50.0f, -6.59f, -1030.0f, 524); } bool AIScriptHysteriaPatron1::Update() { |