MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / make_permutation_string

Function make_permutation_string

RSPRecomp/src/rsp_recomp.cpp:892–900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

890}
891
892std::string make_permutation_string(const std::vector<uint32_t> permutation) {
893 std::string str = "";
894
895 for (uint32_t opt : permutation) {
896 str += std::to_string(opt);
897 }
898
899 return str;
900}
901
902void create_overlay_swap_function(const std::string& function_name, std::ofstream& output_file, const std::vector<FunctionPermutation>& permutations, const RSPRecompilerConfig& config) {
903 // Includes and permutation protos

Callers 2

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected