Skip to content

Commit

Permalink
corrected comment, tough to smart
Browse files Browse the repository at this point in the history
  • Loading branch information
marlux895 authored Oct 7, 2023
1 parent 054d0f9 commit 0e84c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/menu_specialized.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ static void ConditionGraph_CalcRightHalf(struct ConditionGraph *graph)
// No need for conditional, positions on the Beauty line are always above the Cute line
ConditionGraph_CalcLine(graph, graph->scanlineRight[0], &graph->curPositions[GRAPH_BEAUTY], &graph->curPositions[GRAPH_CUTE], TRUE, NULL);

// Calculate Cute -> Tough line (includes left scanline because this crosses the halfway point)
// Calculate Cute -> Smart line (includes left scanline because this crosses the halfway point)
i = (graph->curPositions[GRAPH_CUTE].y <= graph->curPositions[GRAPH_SMART].y);
ConditionGraph_CalcLine(graph, graph->scanlineRight[0], &graph->curPositions[GRAPH_CUTE], &graph->curPositions[GRAPH_SMART], i, graph->scanlineLeft[0]);

Expand Down

0 comments on commit 0e84c7d

Please sign in to comment.