diff options
| author | robojumper <robojumper@gmail.com> | 2025-07-26 15:23:07 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-07-26 15:23:20 +0200 |
| commit | 0aaeb4123d09bd112a2a0b742a1bd60e236669b1 (patch) | |
| tree | 9b243377f73f9da40ee9854918485af84e3bb562 /src/d/d_cs_base.cpp | |
| parent | 01d7ad1b4f77bc2952aa3803a8d290a49c6ac5e6 (diff) | |
d_lyt_cursor_stick OK
Diffstat (limited to 'src/d/d_cs_base.cpp')
| -rw-r--r-- | src/d/d_cs_base.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/d_cs_base.cpp b/src/d/d_cs_base.cpp index 8e2609ce..1326c80c 100644 --- a/src/d/d_cs_base.cpp +++ b/src/d/d_cs_base.cpp @@ -103,9 +103,9 @@ int dCsBase_c::update() { return execute(); } -int dCsBase_c::similarToDraw() { +bool dCsBase_c::drawDirectly() { if (field_0x704 != 1) { - return SUCCEEDED; + return true; } if (field_0x703 && lbl_80572D10 && field_0x702) { @@ -118,7 +118,7 @@ int dCsBase_c::similarToDraw() { mpCurrLyt->calc(); mpCurrLyt->draw(); } - mCursorStick.similarToDraw(); + mCursorStick.drawDirectly(); - return SUCCEEDED; + return true; } |
