Skip to content

Commit

Permalink
lara_look: fix upside down frame when looking forward too far
Browse files Browse the repository at this point in the history
  • Loading branch information
walkawayy committed May 12, 2024
1 parent 7351e7c commit a9e6898
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- `/hp [num]`
- `/heal`
- fixed config tool and installer missing icons (#1358, regression from 4.0)
- fixed looking forward too far causing an upside down camera frame (#1338)

## [4.1.2](https://github.com/LostArtefacts/TR1X/compare/4.1.1...4.1.2) - 2024-04-28
- fixed pictures display time (#1349, regression from 4.1)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ Not all options are turned on by default. Refer to `TR1X_ConfigTool.exe` for det
- fixed Lara saying "no" when taking valid actions in front of a key item receptacle
- fixed Lara not saying "no" when using the Scion incorrectly
- fixed flickering in bats' death animations and rapid shooting if Lara continues to fire when they are killed
- fixed looking forward too far causing an upside down camera frame

#### Cheats
- added a fly cheat
Expand Down
2 changes: 1 addition & 1 deletion src/global/const.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
#define DEATH_WAIT_MIN (2 * LOGIC_FPS)
#define MAX_HEAD_ROTATION (50 * PHD_DEGREE) // = 9100
#define MAX_HEAD_TILT_LOOK (22 * PHD_DEGREE) // = 4004
#define MIN_HEAD_TILT_LOOK (-42 * PHD_DEGREE) // = -7644
#define MIN_HEAD_TILT_LOOK (-35 * PHD_DEGREE) // = -6370
#define MAX_HEAD_TILT_CAM (85 * PHD_DEGREE) // = 15470
#define MIN_HEAD_TILT_CAM (-85 * PHD_DEGREE) // = 15470
#define HEAD_TURN (4 * PHD_DEGREE) // = 728
Expand Down

0 comments on commit a9e6898

Please sign in to comment.