Skip to content

Commit

Permalink
Fix #671
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Cole committed Apr 24, 2024
1 parent 740d7d2 commit 93a5e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YSI_Coding/y_functional/y_functional_funcs.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ stock Reverse(data[], dataSize = sizeof (data))
{
new
temp = 0;
for (new i = 0; j = dataSize - 1; i < j; ++i, --j)
for (new i = 0, j = dataSize - 1; i < j; ++i, --j)
{
temp = data[i],
data[i] = data[j],
Expand Down

0 comments on commit 93a5e33

Please sign in to comment.