Skip to content

Commit

Permalink
Merge pull request #122 from Trxyebeep/dev_troye
Browse files Browse the repository at this point in the history
Dev troye
  • Loading branch information
Trxyebeep authored Nov 29, 2021
2 parents 51c96ff + 6d711ba commit 81d1122
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tomb5 changelog

## [2.0.0](https://github.com/Trxyebeep/TOMB5/tree/V2.0.0) (24/11/2021)
## [2.0.0](https://github.com/Trxyebeep/TOMB5/tree/V2.0.0) (29/11/2021)

### tomb5 bug fixes

Expand All @@ -17,6 +17,7 @@
- Enemy health bars
- Ammo counter
- Hair respects interpolated frames (smooth hair)
- Fix floating hair in Joby levels

## [1.1.0](https://github.com/Trxyebeep/TOMB5/tree/V1.1.0) (15/11/2021)

Expand Down
2 changes: 1 addition & 1 deletion TOMB5/game/control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ long ControlPhase(long _nframes, int demo_mode)
#ifdef CUTSCENE_SKIPPER
if (tomb5.cutseq_skipper)
{
if (keymap[DIK_ESCAPE] && !ScreenFading)//skip them with esc
if (keymap[DIK_ESCAPE] && !ScreenFading && !bDoCredits)//skip them with esc
do_cutseq_skipper_shit();
}
#endif
Expand Down
4 changes: 4 additions & 0 deletions TOMB5/game/laramisc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ void LaraCheat(ITEM_INFO* item, COLL_INFO* coll)
lara.gun_status = 0;
LaraInitialiseMeshes();
lara.mesh_effects = 0;
#ifdef GENERAL_FIXES
lara_item->hit_points = 1000;
#else
lara_item->hit_points = cheat_hit_points;
#endif
}
}

Expand Down

0 comments on commit 81d1122

Please sign in to comment.