diff options
author | 2020-01-23 01:40:29 +0900 | |
---|---|---|
committer | 2020-01-23 01:40:29 +0900 | |
commit | e4ae509f46a69cb0d28a8b87900728121d4f6ad3 (patch) | |
tree | 22f6f2f790e40756b6a9d7be4ce2a062addc70a2 | |
parent | 05c427f41397c0c24f2b66ab03ca0d9035c99b54 (diff) |
Fix MT 07533
-rw-r--r-- | src/mame/drivers/bnstars.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/bnstars.cpp b/src/mame/drivers/bnstars.cpp index 99a690d1256..35e67a5e9ed 100644 --- a/src/mame/drivers/bnstars.cpp +++ b/src/mame/drivers/bnstars.cpp @@ -441,6 +441,7 @@ void bnstars_state::draw_sprites(screen_device &screen, bitmap_ind16 &bitmap, co flipy = !flipy; } + pri >>= 4; /* TODO: priority handling is completely wrong, but better than nothing */ if (pri == 0x0) pri_mask = 0x00; |