summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorlepelog <25211966+lepelog@users.noreply.github.com>2023-10-13 21:18:02 +0200
committerlepelog <25211966+lepelog@users.noreply.github.com>2023-10-13 21:18:02 +0200
commita194d553afcdb0908a35ced1599487e32af249ea (patch)
treeb58dc41cad5fb9bf66def445b3f65794481480a6 /include
parentfa36edcffdde37c7e9cab881d5c825747fc006f2 (diff)
flagmanager progress
Diffstat (limited to 'include')
-rw-r--r--include/toBeSorted/bitwise_flag_helper.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/toBeSorted/bitwise_flag_helper.h b/include/toBeSorted/bitwise_flag_helper.h
index 2cad936a..3ddfa2df 100644
--- a/include/toBeSorted/bitwise_flag_helper.h
+++ b/include/toBeSorted/bitwise_flag_helper.h
@@ -5,6 +5,9 @@
class BitwiseFlagHelper {
public:
bool checkFlag(u16 slot, u16 shift, const u16 *pData, u16 flagCount);
+ bool checkFlag2(u16 slot, u16 shift, const u16 *pData, s32 flagCount) {
+ return checkFlag(slot, shift, pData, flagCount);
+ }
void setFlag(u16 slot, u16 shift, u16 *pData, u16 flagCount);
void unsetFlag(u16 slot, u16 shift, u16 *pData, u16 flagCount);
}; \ No newline at end of file