Has streaming sound broken?

I recently updated and now my music would play (streaming pcm) have I messed with a wrong setting, or is something broke?

Thanks.

Always post a snippet of code that you’re trying to run,

check

PROJ_STREAMING_MUSIC=1

is set in project->build options->#defines

AND

PROJ_GBSOUND=0

Just tested with repo version, works

I have
PROJ_HIRES=1
PROJ_STARTUPLOGO=1
PROJ_GAMEBUINO=0
PROJ_GBSOUND=0
PROJ_STREAMING_MUSIC=1
PROJ_ENABLE_SYNTH=1
PROJ_ENABLE_SOUND=1
PROJ_WINDOWS=1

in my settings, the code is nothing more complex than…
char musicName[] = “pokittris.raw”; // globally

game.sound.playMusicStream(musicName); // in main just before while (game.isRunning()) {

game.sound.updateStream(); // just inside while (game.isRunning()) {

I get nothing. Although I do here the gambuino boot sound when the program starts.

you can’t hear that unless PROJ_GBSOUND=1. Rebuild.

Well that makes me feel stupid. After all the post I have read where the answer is “rebuild everything” I never noticed that I hadn’t tried that.