Compare commits

..

8 Commits

Author SHA1 Message Date
bf351b39e2 chore: dont allocate not-small ?Sprite array on stack
use memset like most other allocations in this emu
2022-10-21 06:01:48 -03:00
d1fe4d4da9 chore: move FrameBuffer struct to util.zig 2022-10-21 06:01:48 -03:00
84a9622394 chore: move OAM, PALRAM and VRAM structs to separate files 2022-10-21 06:01:48 -03:00
d8e4bd4319 fix: 8-bit writes to WIN PPU registers
Advance Wars depends on these registers similar to Mario Kart's 8-bit
writes to Affine Background registers:
2022-10-21 06:01:48 -03:00
2c0e9b92bc chore: refactor window 2022-10-21 06:01:48 -03:00
ce249bac65 chore: crude background window impl (no affine) 2022-10-21 06:01:48 -03:00
2207341020 chore: rename function (misspelt until now somehow) 2022-10-21 06:01:48 -03:00
712c58391d chore(config): change defaults in config.toml 2022-10-21 06:01:22 -03:00

View File

@ -1,7 +1,7 @@
[Host]
# Using nearest-neighbour scaling, how many times the native resolution
# of the game bow should the screen be?
win_scale = 4
win_scale = 3
# Enable VSYNC on the UI thread
vsync = true
# Mute ZBA
@ -9,9 +9,9 @@ mute = false
[Guest]
# Sync Emulation to Audio
audio_sync = false
audio_sync = true
# Sync Emulation to Video
video_sync = false
video_sync = true
# Force RTC support
force_rtc = false
# Skip BIOS