You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MiiSelectorReturn type has a field named mii with the type MiiData. For some reason the type MiiData seems to not exist. So I can't use the field mii with it's properties. If I check the implementation I see this so I don't know what's going on.
typedefstruct
{
u32no_mii_selected; ///< 0 if a Mii was selected, 1 if the selection was///< canceled.u32guest_mii_was_selected; ///< 1 if a Guest Mii was selected, 0 otherwise.u32guest_mii_index; ///< Index of the selected Guest Mii,///< 0xFFFFFFFF if no guest was selected.MiiDatamii; ///< Data of selected Mii.u16_pad0x68; ///< @privateu16checksum; ///< Checksum of the returned Mii data.///< Stored as a big-endian value; use///< @ref miiSelectorChecksumIsValid to///< verify.u16guest_mii_name[MIISELECTOR_GUESTMII_NAME_LEN]; ///< Localized name of a Guest Mii,///< if one was selected (UTF16-LE///< string). Zeroed otherwise.
} MiiSelectorReturn;
How can the issue be reproduced?
MiiSelectorConfmsConf;
MiiSelectorReturnmsRet;
miiSelectorInit(&msConf);
miiSelectorSetTitle(&msConf, "Select your Mii");
miiSelectorSetOptions(&msConf, 0);
miiSelectorSetInitialIndex(&msConf, 0);
miiSelectorLaunch(&msConf, &msRet);
msRet.mii//Doesn't exist for some reasonMiiDatadata//Doesn't exist as well
When hovering over .mii I get this: <error-type> <unnamed>::mii
Environment?
Windows 11
The text was updated successfully, but these errors were encountered:
This isn't completed. It's simply been locked to avoid random contributions from people who like to drive by issues here and provide bogus advice. We're currently working on figuring out how to get this working cross platform while allowing the vscode project settings to be shared.
This project will work across macOS, linux and windows with the caveat that vscode should be started from the msys2 shell after running make GENERATE_COMPILE_COMMANDS=1
The issue we currently have is that this line will only work on windows if the environment variable gets translated into a windows path (which the msys2 shell will do when starting a native windows program)
This may not matter if you don't use windows. It makes things kind of awkward if you do.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Bug Report
What's the issue you encountered?
The
MiiSelectorReturn
type has a field named mii with the typeMiiData
. For some reason the type MiiData seems to not exist. So I can't use the field mii with it's properties. If I check the implementation I see this so I don't know what's going on.How can the issue be reproduced?
When hovering over .mii I get this:
<error-type> <unnamed>::mii
Environment?
The text was updated successfully, but these errors were encountered: