Remove redundancies in arcade example of flow section

This commit is contained in:
Jahn 2025-02-28 02:26:43 -05:00
parent a9f7086f9c
commit 2bdfb417a6

View File

@ -10,8 +10,7 @@ Examples:
```mermaid ```mermaid
flowchart TD flowchart TD
A[Deposit Coin] --> B[Credit >= 1] A[Deposit Coin] --> B[Credit >= 1]
B -- "Yes" --> C[Start Game] B -- "Yes" --> E[Begin Game Loop]
C --> E[Begin Game Loop]
E --> F[Die] E --> F[Die]
F --> G[Retry?] F --> G[Retry?]
G -- "No" --> I[Highscore] G -- "No" --> I[Highscore]