mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- remove unused getters from player_struct
.
This commit is contained in:
parent
aead65183c
commit
7493d4e334
1 changed files with 0 additions and 2 deletions
|
@ -219,11 +219,9 @@ struct player_struct
|
|||
|
||||
|
||||
// Access helpers for the widened angle and horizon fields.
|
||||
int getlookang() { return q16look_ang >> FRACBITS; }
|
||||
void setlookang(int b) { q16look_ang = b << FRACBITS; }
|
||||
void addlookang(int b) { q16look_ang += b << FRACBITS; }
|
||||
void addlookang(double b) { q16look_ang += int(b *65536.); }
|
||||
int getrotscrnang() { return q16rotscrnang >> FRACBITS; }
|
||||
void setrotscrnang(int b) { q16rotscrnang = b << FRACBITS; }
|
||||
void addrotscrnang(int b) { q16rotscrnang += b << FRACBITS; }
|
||||
void addrotscrnang(double b) { q16rotscrnang += int(b *65536.); }
|
||||
|
|
Loading…
Reference in a new issue