diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-17 21:35:18 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-17 21:35:18 -0400 |
| commit | 34afbd84db8d66dd634fa19e94a737d40dfe7995 (patch) | |
| tree | fb950a75f3928b8283874b277a9ab9baf1345392 /src/JSystem/J2DGraph/J2DScreen.cpp | |
| parent | f1d73f7fc721e957303d4e6541ec165c3ad9aea5 (diff) | |
clangd: Started fixing warnings and errors, code cleanup
Diffstat (limited to 'src/JSystem/J2DGraph/J2DScreen.cpp')
| -rw-r--r-- | src/JSystem/J2DGraph/J2DScreen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/JSystem/J2DGraph/J2DScreen.cpp b/src/JSystem/J2DGraph/J2DScreen.cpp index c86b62f6..29289707 100644 --- a/src/JSystem/J2DGraph/J2DScreen.cpp +++ b/src/JSystem/J2DGraph/J2DScreen.cpp @@ -41,12 +41,13 @@ s32 J2DScreen::makeHierarchyPanes(J2DPane* pParent, JSURandomInputStream* pStrea case 'EXT1': pStream->seek(header.mSize, JSUStreamSeekFrom_CUR); return 1; - case 'BGN1': + case 'BGN1': { pStream->seek(header.mSize, JSUStreamSeekFrom_CUR); s32 ret = makeHierarchyPanes(pPane, pStream); if (ret != 0) return ret; break; + } case 'END1': pStream->seek(header.mSize, JSUStreamSeekFrom_CUR); return 0; |
