Skip to content

Commit

Permalink
incresed volume moved victory text down
Browse files Browse the repository at this point in the history
  • Loading branch information
sardap committed Aug 13, 2021
1 parent 62858b8 commit 9d28247
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/scenes/game_win.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9d28247

Please sign in to comment.