Add todo comment to unload()

This commit is contained in:
8dcc 2023-07-21 13:58:47 +02:00
parent 90ef1e4105
commit 4c5fbcd677
1 changed files with 4 additions and 1 deletions

View File

@ -45,8 +45,11 @@ __attribute__((constructor)) void load(void) {
}
__attribute__((destructor)) void unload() {
if (loaded)
if (loaded) {
/* TODO: Remove our cvars */
globals_restore();
}
printf("hl-cheat unloaded.\n\n");
}