Skip to content

Commit

Permalink
Sync with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
ds22x committed Nov 1, 2023
2 parents b8fbf6c + dab534b commit 0685381
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ jobs:
{
github_rest DELETE "/repos/${GITHUB_REPOSITORY}/releases/${1}"
}
github_delete_tag()
{
github_rest DELETE "/repos/${GITHUB_REPOSITORY}/git/refs/tags/${1}"
}
github_create_release()
{
local payload="{
Expand Down Expand Up @@ -156,7 +160,12 @@ jobs:
{ release_id=$(github_get_release_id_for_tag nightly); status=$?; } || true
# Delete existing nightly release if it exists.
case ${status} in
0) github_delete_release_by_id "${release_id}" ;;
0)
github_delete_release_by_id "${release_id}"
# Deleting the 'nightly' release doesn't delete
# the 'nightly' tag, so let's do it manually.
github_delete_tag nightly
;;
22) >&2 echo "No current nightly release; skipping tag deletion." ;;
*) >&2 echo "API call failed unexpectedly." && exit 1 ;;
esac
Expand Down
3 changes: 2 additions & 1 deletion bsnes/processor/wdc65816/instructions-other.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,10 @@ E S.h = 0x01;
auto WDC65816::instructionPullB() -> void {
idle();
idle();
L B = pull();
L B = pullN();
ZF = B == 0;
NF = B & 0x80;
E S.h = 0x01;
}

auto WDC65816::instructionPullP() -> void {
Expand Down
2 changes: 1 addition & 1 deletion bsnes/target-bsnes/resource/bsnes.desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=bsnes
Comment=Emulator
Comment=SNES Emulator
Exec=bsnes
Icon=bsnes
Terminal=false
Expand Down

0 comments on commit 0685381

Please sign in to comment.