Skip to content

Commit

Permalink
Display tiles in 16 wide in standalone view 🧱.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarty committed May 21, 2024
1 parent 8506a04 commit 3e45f53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/components/RoomGfx.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const RoomGfx = ({
nametable={nametable}
objectImages={objectImages}
nametableStart={0}
rowLength={8}
zoom={2}
/>
</Link>
Expand All @@ -37,6 +38,7 @@ const RoomGfx = ({
nametable={nametable}
objectImages={objectImages}
nametableStart={baseTiles.gfx.length / 8 / 2}
rowLength={8}
zoom={2}
/>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/containers/GfxCanvasContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const GfxCanvasContainer = ({
nametable = null,
objectImages = null,
nametableStart = 0,
rowLength = 8,
rowLength = 16,
zoom = 1,
spacing = 1,
}) => {
Expand Down

0 comments on commit 3e45f53

Please sign in to comment.