SciresM
SciresM
"Error has occurred"...could you send me the report files this generates? They should be in erpt_reports, maybe, I don't know. You can DM them to me on Discord, `SciresM#0524`.
*no*. What I said the last time this was suggested: No matter what solution we take regarding multi-contents-folder support, atmosphere is never going to allow non-program id folder names (or...
Yuzu's romfs_ext stuff is explicitly not being added to atmosphere, per discussions with yuzu developers about how and why it's bad.
Fine with adding this once C++20 std::bit_cast is available.
how do you "standard cast" a hex pattern to float/double
that is not at all how casting works
To be more specific: float u32 bit pattern conversion is more complicated than that.
no, I am thinking of implementing like `0F000010 10000000 3F800000 `. This requires std::bit_cast. That is not how u32 float casts work.
@leoetlino gnu++20 allows type-punning with unions explicitly, which we use. Since gcc 10 doesn't implement std::bit_cast.... @rydoginator I spent like 30 minutes trying to implement this. It was awkward because...
@Captnoord i don't know why you wrote all that. bit_cast cannot be constexpr without compiler magic. That compiler magic hasn't been implemented yet.