summaryrefslogtreecommitdiff
path: root/include/d/d_select_cursor.h
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2023-06-28 15:02:13 +0300
committerTal Hayon <talhayon1@gmail.com>2023-06-28 15:02:13 +0300
commitf7e5cc384f2f331377a48f0fb0c083ad4384724f (patch)
tree64ff0ed731ec4976cc7fdcd3599534169d8c380a /include/d/d_select_cursor.h
parenta3c4cc486e6f67c1beb5d84e45fb979cc744fba3 (diff)
parent47edd6719044926e44926dfada578285a56cdb00 (diff)
Merge remote-tracking branch 'upstream/master' into undecided
Diffstat (limited to 'include/d/d_select_cursor.h')
-rw-r--r--include/d/d_select_cursor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/d/d_select_cursor.h b/include/d/d_select_cursor.h
index 50b576f52b..fcea7acd66 100644
--- a/include/d/d_select_cursor.h
+++ b/include/d/d_select_cursor.h
@@ -58,6 +58,8 @@ public:
void onPlayAnime(int i_flag) { field_0xb4 |= (1 << i_flag); }
void offPlayAnime(int i_flag) { field_0xb4 &= ~(1 << i_flag); }
bool chkPlayAnime(int i_flag) { return field_0xb4 & (1 << i_flag); }
+ void onPlayAllAnime() { field_0xb4 = 0xff; }
+ void offPlayAllAnime() { field_0xb4 = 0; }
private:
/* 0x04 */ J2DScreen* mpScreen;