Asterix Gaming Guild Logo GeneralXXLXXL 2XXL 3XXXLOlympic GamesXXL EditorToolsOff-TopicXXL RomasteredXXL 2 RemasteredOther GamesModsCaesar's ChallengeUnfair XXLPatchesFan ArtPersonal ArtSpeedrunningMediaRandomizerBETA RomeHSKALPresence AdrienPresence SPQRPresence Mr. RubinshteinSupport Bot Helpdesk

#hskal

pegperegogaucho
The "Load project" button does not do anything?
pegperegogaucho
When i load a project, it crashes ``` : Could not create a sound stream: Failed to initialize device Terminating... ``` That is pretty weird, sound works fine anywhere else in my system... maybe my sound module/whatever is not supported?
hesopesomeso
Yep...
hesopesomeso
Release build should not have those
hesopesomeso
I'm aware, it is temporary until I decide to implement it properly :Obelul:
hesopesomeso
Weird... :FrogThinking:
hesopesomeso
I'm using alsa, so that would be strange :FrogThinking:
hesopesomeso
You might not have a "default" stream?
pegperegogaucho
You're the programmer 😉
hesopesomeso
Yes sir, so I gotta fix everything!
pegperegogaucho
I quickly checked on gitlab and only found lines that return an error when some conditions do not pass
hesopesomeso
That would be this.
pegperegogaucho
yup
pegperegogaucho
``` auto count = snd_pcm_poll_descriptors_count(stream.pcm_handle); if (count <= 0) { return kunexpected(kalsa_error_t::FAILED_TO_CREATE_STREAM); } // Add stream to polling. pollfd poll; poll.events = POLLOUT; if (snd_pcm_poll_descriptors(stream.pcm_handle, &poll, 1) < 0) return kunexpected(kalsa_error_t::FAILED_TO_CREATE_STREAM); ``` There is also these lines, it could be failing here? I'm not sure what this does
pegperegogaucho
Nope, that is a different error...
hesopesomeso
This returns a different error
pegperegogaucho
Yes :Obelul:
hesopesomeso
actually can you check `aplay -L`
hesopesomeso
and see if you have default listed
pegperegogaucho
aplay is not recognized :KEKW: