diff options
author | 2022-05-16 21:07:41 +0100 | |
---|---|---|
committer | 2022-05-16 22:15:46 +0100 | |
commit | 278b61bc3f2018515e26fd6b45410aded8b6417e (patch) | |
tree | 39a860b66c3d88e91359f48dbf937c0c71d61833 /src/con_.h | |
parent | e8843dba3eb1c7a67f6ff7b920046ae36a12acd0 (diff) | |
download | sst-278b61bc3f2018515e26fd6b45410aded8b6417e.tar.gz sst-278b61bc3f2018515e26fd6b45410aded8b6417e.zip |
Clean up some random bits and bobs
Diffstat (limited to 'src/con_.h')
-rw-r--r-- | src/con_.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |