citra/src/core/hle/applets
fearlessTobi 6e6c437a52 applets: stub mii selector to always return a standard mii
To obtain the data, the LLEd mii selector of system version 11.8.0 was used.
In AppletManager::GlanceParameter, the following code was added to write the returned buffer data to a file:

    if (parameter.buffer.size() == 132) {
        std::u16string name(10, '\0');
        std::memcpy(name.data(), parameter.buffer.data() + 0x26, 10 * sizeof(u16));
        name = std::u16string(name.data());
        FileUtil::IOFile file{fmt::format("{}.mii", Common::UTF16ToUTF8(name)), "wb"};
        file.WriteBytes(parameter.buffer.data(), parameter.buffer.size());
    }

Then "xxd -i" was used on the file to convert it to a hex array.
2018-10-27 12:23:24 +02:00
..
applet.cpp core: clean up warnings 2018-08-01 14:10:23 -05:00
applet.h Update the entire application to use the new clang format style 2018-03-09 10:54:43 -07:00
erreula.cpp kernel: pass ref to shared memory 2018-10-18 21:41:36 -04:00
erreula.h APT/Applet: move applet managing into its own class 2018-01-25 22:20:08 +02:00
mii_selector.cpp applets: stub mii selector to always return a standard mii 2018-10-27 12:23:24 +02:00
mii_selector.h APT/Applet: move applet managing into its own class 2018-01-25 22:20:08 +02:00
mint.cpp kernel: pass ref to shared memory 2018-10-18 21:41:36 -04:00
mint.h APT/Applet: move applet managing into its own class 2018-01-25 22:20:08 +02:00
swkbd.cpp kernel: pass ref to shared memory 2018-10-18 21:41:36 -04:00
swkbd.h hle/swkbd: specify endianness for enum and other members 2018-09-22 00:28:44 -04:00