cosmetics (added trailing commas to make it easy to add new lua functions)
This commit is contained in:
parent
84a11eacdf
commit
3dffd0b9b6
|
@ -147,13 +147,13 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
"output",
|
"output",
|
||||||
"clear",
|
"clear",
|
||||||
"getluafunctionslist"
|
"getluafunctionslist",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] GuiFunctions = new string[]
|
public static string[] GuiFunctions = new string[]
|
||||||
{
|
{
|
||||||
"text",
|
"text",
|
||||||
"alert"
|
"alert",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] EmuFunctions = new string[]
|
public static string[] EmuFunctions = new string[]
|
||||||
|
@ -166,10 +166,10 @@ namespace BizHawk.MultiClient
|
||||||
"framecount",
|
"framecount",
|
||||||
"lagcount",
|
"lagcount",
|
||||||
"islagged",
|
"islagged",
|
||||||
"getsystemid"
|
"getsystemid",
|
||||||
//"registerbefore",
|
//"registerbefore",
|
||||||
//"registerafter",
|
//"registerafter",
|
||||||
//"register"
|
//"register",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] MemoryFunctions = new string[]
|
public static string[] MemoryFunctions = new string[]
|
||||||
|
@ -206,9 +206,9 @@ namespace BizHawk.MultiClient
|
||||||
"write_u24_be",
|
"write_u24_be",
|
||||||
"write_u32_be",
|
"write_u32_be",
|
||||||
"readbyte",
|
"readbyte",
|
||||||
"writebyte"
|
"writebyte",
|
||||||
//"registerwrite",
|
//"registerwrite",
|
||||||
//"registerread"
|
//"registerread",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] MainMemoryFunctions = new string[]
|
public static string[] MainMemoryFunctions = new string[]
|
||||||
|
@ -242,27 +242,27 @@ namespace BizHawk.MultiClient
|
||||||
"write_u24_be",
|
"write_u24_be",
|
||||||
"write_u32_be",
|
"write_u32_be",
|
||||||
"readbyte",
|
"readbyte",
|
||||||
"writebyte"
|
"writebyte",
|
||||||
//"registerwrite",
|
//"registerwrite",
|
||||||
//"registerread"
|
//"registerread",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] SaveStateFunctions = new string[] {
|
public static string[] SaveStateFunctions = new string[] {
|
||||||
"saveslot",
|
"saveslot",
|
||||||
"loadslot",
|
"loadslot",
|
||||||
"save",
|
"save",
|
||||||
"load"
|
"load",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] MovieFunctions = new string[] {
|
public static string[] MovieFunctions = new string[] {
|
||||||
"mode",
|
"mode",
|
||||||
"rerecordcount",
|
"rerecordcount",
|
||||||
"stop"
|
"stop",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] JoypadFunctions = new string[] {
|
public static string[] JoypadFunctions = new string[] {
|
||||||
"set"
|
"set",
|
||||||
//"get"
|
//"get",
|
||||||
};
|
};
|
||||||
|
|
||||||
public static string[] MultiClientFunctions = new string[] {
|
public static string[] MultiClientFunctions = new string[] {
|
||||||
|
@ -274,7 +274,7 @@ namespace BizHawk.MultiClient
|
||||||
"openrampoke",
|
"openrampoke",
|
||||||
"openhexeditor",
|
"openhexeditor",
|
||||||
"opentasstudio",
|
"opentasstudio",
|
||||||
"opencheats"
|
"opencheats",
|
||||||
};
|
};
|
||||||
|
|
||||||
/****************************************************/
|
/****************************************************/
|
||||||
|
|
Loading…
Reference in New Issue