Version 4.9d - new opening jingle for the upcoming release. Otgher minor tweaks and cleanups.

This commit is contained in:
Dave Bernazzani 2024-03-06 07:22:02 -05:00
parent f42f8c329c
commit 8ae21e0ad8
5 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ include $(DEVKITARM)/ds_rules
export TARGET := NINTV-DS export TARGET := NINTV-DS
export TOPDIR := $(CURDIR) export TOPDIR := $(CURDIR)
export VERSION := 4.9c export VERSION := 4.9d
ICON := -b $(CURDIR)/logo.bmp "NINTV-DS $(VERSION);wavemotion-dave;https://github.com/wavemotion-dave/NINTV-DS" ICON := -b $(CURDIR)/logo.bmp "NINTV-DS $(VERSION);wavemotion-dave;https://github.com/wavemotion-dave/NINTV-DS"

Binary file not shown.

Binary file not shown.

View File

@ -487,7 +487,7 @@ void ApplyOptions(void)
clocksPerSample = clockDivisor<<4; clocksPerSample = clockDivisor<<4;
// Check if the sound changed... // In case the sound changed... restart the audio processor
extern void audioRampDown(void); extern void audioRampDown(void);
audioRampDown(); audioRampDown();
bStartSoundFifo=true; bStartSoundFifo=true;

View File

@ -1243,7 +1243,7 @@ void dsShowScreenMain(bool bFull, bool bPlayJingle)
if (bPlayJingle) if (bPlayJingle)
{ {
soundPlaySample((const void *) mus_intro_wav, SoundFormat_ADPCM, mus_intro_wav_size, 22050, 127, 64, false, 0); soundPlaySample((const void *) mus_intro_wav, SoundFormat_16Bit, mus_intro_wav_size, 22050, 127, 64, false, 0);
} }
} }