You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* move comment
* use const char* instead of vstring for immutable strings
* move down integer defs
* use const char* for immutable data
* Add #defines for MODE_* constants
* use an enum instead of #define
* replace break with goto
This skips over an if statement, but the goto is only taken when the if
statement will be skipped anyway.
* remove superfluous continues
`continue` at the end of a loop is a no op. Use `else if` to put it
at the end of the block if necessary.
* add switch statement
The earlier goto replacement was to avoid the change to break here.
* combine common code
* formatting
0 commit comments