Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| } }; | ||
|
|
||
| extern cvar_t* g_gametype; | ||
| extern local_game_import_t gi; |
There was a problem hiding this comment.
Declare local_game_import_t before using in gi extern
extern local_game_import_t gi; is now placed before local_game_import_t is declared anywhere in the header, so any translation unit including this file fails to compile with an unknown-type error. The extern needs to come after the struct definition or be preceded by a forward declaration to keep the header buildable.
Useful? React with 👍 / 👎.
Summary
Testing
Codex Task