Skip to content

Commit

Permalink
Fix spellcheck error and improve code
Browse files Browse the repository at this point in the history
Signed-off-by: Bensuperpc <[email protected]>
  • Loading branch information
bensuperpc committed Nov 9, 2021
1 parent 629d0ea commit 7fd5a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ On AMD R7 5800H (clang 12):

#### How does it work ?

- The algorithm will generate sequences of characters (A, B, C ... AA, BA, CA ...)
- The algorithm will generate sequences of characters (A, B, C ... AA...)
- It will then calculate hash (**JAMCRC**) from series of characters
- It will compare hashes, if they are equal to one of the hashes of one of the official cheat codes, this will save the sequence of characters
- When it is finished it displays the results
Expand Down
2 changes: 1 addition & 1 deletion source/gta_sa_lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ auto gta::jamcrc(const std::string& my_string) -> std::uint32_t

/**
* \brief Generate Alphabetic sequence from uint64_t value, A=0, Z=26, AA = 27,
* BA = 28 = 29 T \param n index in base 26 \param array return array
* T \param n index in base 26 \param array return array
*/
void gta::find_string_inv(char* array, uint64_t n)
{
Expand Down

0 comments on commit 7fd5a1e

Please sign in to comment.