diff --git a/.github/workflows/deploy.workflow.yaml b/.github/workflows/deploy.workflow.yaml index 149581f..9338e5e 100644 --- a/.github/workflows/deploy.workflow.yaml +++ b/.github/workflows/deploy.workflow.yaml @@ -15,7 +15,7 @@ jobs: - name: Build conatiner run: docker build . -t gba_build:latest - name: Build Rom - run: docker run -v ${PWD}:/app -e WALK_GOOD_MAYBE_RELEASE=true -e VOLUME=0.5f -e GIT_TAG=${{ github.ref }} gba_build:latest + run: docker run -v ${PWD}:/app -e WALK_GOOD_MAYBE_RELEASE=true -e VOLUME=0.8f -e GIT_TAG=${{ github.ref }} gba_build:latest - name: Create Release id: create_release uses: actions/create-release@v1 diff --git a/source/scenes/game_win.c b/source/scenes/game_win.c index 78bcd4d..b7b1a5b 100644 --- a/source/scenes/game_win.c +++ b/source/scenes/game_win.c @@ -38,7 +38,7 @@ static void show(void) REG_BG0VOFS = 0; REG_BG1HOFS = int2fx(_data->vict_x); - REG_BG1VOFS = 0; + REG_BG1VOFS = -40; REG_BG0CNT = BG_PRIO(1) | BG_8BPP | BG_SBB(GW_MAIN_SBB) | BG_CBB(GW_SHARED_CB) | BG_REG_32x32; REG_BG1CNT = BG_PRIO(0) | BG_8BPP | BG_SBB(GW_TEXT_SBB) | BG_CBB(GW_SHARED_CB) | BG_REG_64x32;