mgb version

This commit is contained in:
Alex Janka 2023-04-07 08:03:43 +10:00
parent 8526dd2eca
commit e04820a80a
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ jobs:
- run: mkdir test-roms
- uses: suisei-cn/actions-download-file@v1.3.0
with:
url: 'https://github.com/trash80/mGB/raw/master/Releases/mGB1_3_1.gb'
url: 'https://github.com/trash80/mGB/raw/master/mGB.gb'
target: test-roms/
- uses: actions-rs/toolchain@v1
with:

View file

@ -70,7 +70,7 @@ type JoypadSender = Mutex<Option<Sender<(JoypadButtons, bool)>>>;
const FRAMES_TO_BUFFER: usize = 1;
const DOWNSAMPLE_TYPE: DownsampleType = DownsampleType::ZeroOrderHold;
const ROM: &[u8; 65536] = include_bytes!("../../test-roms/mGB1_3_1.gb");
const ROM: &[u8; 65536] = include_bytes!("../../test-roms/mGB.gb");
const BOOTROM: Option<&[u8; 256]> = None;
impl Plugin for GameboyEmu {