public static string GetOpcodeNameForClient(uint opcode, uint Ctor) { string output = CMSG.FirstOrDefault(p => p.Value == opcode).Key; if (Config.BinDiff != string.Empty && output == null) { output = Program.OpTable.getCMSGNameFromCtor(Program.FuncDiff.getOldFunction(Ctor)); } return(output); }
public static string GetOpcodeNameForClient(uint opcode) { return(CMSG.FirstOrDefault(p => p.Value == opcode).Key); }