fix(nds): use '← ↑ → ↓' for help text instead of 'Arrows'
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m37s

This commit is contained in:
2026-03-11 00:36:14 +01:00
parent 2758a6a8d7
commit b3ffaf6794
2 changed files with 2 additions and 2 deletions

View File

@@ -263,7 +263,7 @@ watch(
class="nds2d-hints-container"
style="opacity: 0"
>
<div class="nds2d-hint nds2d-hint-dpad">Arrows</div>
<div class="nds2d-hint nds2d-hint-dpad"> </div>
<div class="nds2d-hint nds2d-hint-x">{{ mapNDSToKey("X") }}</div>
<div class="nds2d-hint nds2d-hint-a">{{ mapNDSToKey("A") }}</div>
<div class="nds2d-hint nds2d-hint-b">{{ mapNDSToKey("B") }}</div>

View File

@@ -266,7 +266,7 @@ const HINTS: Record<string, { label: string; offset: THREE.Vector3 }> = {
offset: new THREE.Vector3(-0.75, 0.15, 0.0),
},
[CROSS_BUTTON]: {
label: "Arrows",
label: "← ↑ → ↓",
offset: new THREE.Vector3(0.75, 2.3, 0.0),
},
};