diff options
author | aap <aap@papnet.eu> | 2021-02-01 10:57:55 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-02-01 10:57:55 +0100 |
commit | 3f60034c391fd5da66639e4a29f121f18ead6255 (patch) | |
tree | f7d5c6b8ac6c7fba1a7a499c600ea551653f6f23 /src/collision/ColLine.h | |
parent | fix realloc (diff) | |
download | re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.gz re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.bz2 re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.lz re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.xz re3-3f60034c391fd5da66639e4a29f121f18ead6255.tar.zst re3-3f60034c391fd5da66639e4a29f121f18ead6255.zip |
Diffstat (limited to '')
-rw-r--r-- | src/collision/ColLine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/collision/ColLine.h b/src/collision/ColLine.h index 21587a06..a2cb9a0b 100644 --- a/src/collision/ColLine.h +++ b/src/collision/ColLine.h @@ -4,9 +4,9 @@ struct CColLine { // NB: this has to be compatible with two CVuVectors CVector p0; - int pad0; +// int pad0; CVector p1; - int pad1; +// int pad1; CColLine(void) { }; CColLine(const CVector &p0, const CVector &p1) { this->p0 = p0; this->p1 = p1; }; |