diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2026-01-11 19:00:04 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-11 19:00:04 -0800 |
| commit | 2dd7e2ea62daaa33195b2adbca8b086ceaa6d464 (patch) | |
| tree | d56016fab9d536e646ebde852dd8ef2ad81ba732 /include/JSystem/JSupport | |
| parent | 6e76f12dd3b49acc9b682eeb811dbec64bc3519c (diff) | |
J2DGraph debug (#3028)
* J2DGraph debug
* J2DGraph debug
Diffstat (limited to 'include/JSystem/JSupport')
| -rw-r--r-- | include/JSystem/JSupport/JSUInputStream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/JSystem/JSupport/JSUInputStream.h b/include/JSystem/JSupport/JSUInputStream.h index 52c80575ee..afde440837 100644 --- a/include/JSystem/JSupport/JSUInputStream.h +++ b/include/JSystem/JSupport/JSUInputStream.h @@ -89,6 +89,10 @@ public: return *this; } + s32 read(bool& val) { + return read(&val, sizeof(bool)); + } + s32 read(u8& val) { return read(&val, sizeof(u8)); } |
