summaryrefslogtreecommitdiffhomepage
path: root/src/con_.h
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-05-16 21:07:41 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-05-16 22:15:46 +0100
commit278b61bc3f2018515e26fd6b45410aded8b6417e (patch)
tree39a860b66c3d88e91359f48dbf937c0c71d61833 /src/con_.h
parente8843dba3eb1c7a67f6ff7b920046ae36a12acd0 (diff)
Clean up some random bits and bobs
Diffstat (limited to 'src/con_.h')
-rw-r--r--src/con_.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/con_.h b/src/con_.h
index 900e8fa..1de9bc5 100644
--- a/src/con_.h
+++ b/src/con_.h
@@ -141,12 +141,12 @@ struct con_var { // ConVar in engine
float fval;
int ival;
bool hasmin;
- // bool hasmax; // better packing here, might break engine ABI
+ // bool hasmax; // better packing here, would break engine ABI
float minval;
- bool hasmax; // just sticking to sdk position for now
+ bool hasmax; // just sticking to sdk position
float maxval;
/*
- * Our quickly-chucked in optional callback - doesn't match the engine!!
+ * Our quickly-chucked-in optional callback - doesn't match the engine!!
* Also has to be manually set in code, although that's probably fine anyway
* as it's common to only want a cvar to do something if the feature
* succesfully init-ed.