diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-01-29 12:00:20 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-01-29 12:02:13 -0400 |
commit | 7edad57557c4f1e9b915340ad97d6c57958ce093 (patch) | |
tree | e112fef7ff2a208d3ae02b12c67500de6962546b /src/pso | |
parent | 157dd9901bbbdda5b50bcfcf652236c7ef1de6c4 (diff) |
TObject: Use `vu16` from `types.h`
Diffstat (limited to 'src/pso')
-rw-r--r-- | src/pso/TObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp index e4c6801..20d942d 100644 --- a/src/pso/TObject.cpp +++ b/src/pso/TObject.cpp @@ -128,7 +128,7 @@ void TObject::run_tasks() { // Adding this here somehow causes the // dead code to be compiled. // `volatile` typecast is required to match. - (volatile u16)node->get_flags(1); + (vu16)node->get_flags(1); } } } else { |