Skip to content

Commit

Permalink
Saving
Browse files Browse the repository at this point in the history
  • Loading branch information
livingkurt committed Dec 4, 2024
1 parent 0332811 commit 55a3f8b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Helios/Random.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ uint16_t Random::next16(uint16_t minValue, uint16_t maxValue)

uint8_t Random::next8(uint8_t minValue, uint8_t maxValue)
{
uint32_t result = next16(minValue, maxValue);
return static_cast<uint8_t>(result);
// uint32_t result = next16(minValue, maxValue);
// return static_cast<uint8_t>(result);
return 150;
}

0 comments on commit 55a3f8b

Please sign in to comment.