citra/src
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
..
audio_core cubeb_sink: ignore null-name device when selecting 2018-10-26 09:17:44 -04:00
citra Review comments - part 3 2018-10-20 10:35:55 -04:00
citra_qt Merge pull request #4376 from FearlessTobi/port-1571 2018-10-26 22:40:55 -04:00
common Merge pull request #4373 from FearlessTobi/port-1553 2018-10-26 22:38:18 -04:00
core applets: stub mii selector to always return a standard mii 2018-10-27 12:23:24 +02:00
dedicated_room web_service: stop using std::future + callback style async 2018-09-13 16:14:34 -04:00
input_common Merge pull request #4193 from B3n30/controller5 2018-10-17 10:49:21 -04:00
network Merge pull request #4191 from valentinvanelslande/minor-fix 2018-09-08 10:05:33 +08:00
tests kernel: make handle table per-process 2018-10-22 21:32:34 -04:00
video_core Handle cases when std::optional does not contain a value 2018-10-05 16:51:33 +02:00
web_service Merge pull request #4359 from FearlessTobi/port-webstuff 2018-10-26 22:34:51 -04:00
.clang-format
CMakeLists.txt