diff options
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; } |
