cosmetics (added trailing commas to make it easy to add new lua functions)

This commit is contained in:
taotao54321 2012-03-11 05:13:12 +00:00
parent 84a11eacdf
commit 3dffd0b9b6
1 changed files with 13 additions and 13 deletions

View File

@ -147,13 +147,13 @@ namespace BizHawk.MultiClient
{
"output",
"clear",
"getluafunctionslist"
"getluafunctionslist",
};
public static string[] GuiFunctions = new string[]
{
"text",
"alert"
"alert",
};
public static string[] EmuFunctions = new string[]
@ -166,10 +166,10 @@ namespace BizHawk.MultiClient
"framecount",
"lagcount",
"islagged",
"getsystemid"
"getsystemid",
//"registerbefore",
//"registerafter",
//"register"
//"register",
};
public static string[] MemoryFunctions = new string[]
@ -206,9 +206,9 @@ namespace BizHawk.MultiClient
"write_u24_be",
"write_u32_be",
"readbyte",
"writebyte"
"writebyte",
//"registerwrite",
//"registerread"
//"registerread",
};
public static string[] MainMemoryFunctions = new string[]
@ -242,27 +242,27 @@ namespace BizHawk.MultiClient
"write_u24_be",
"write_u32_be",
"readbyte",
"writebyte"
"writebyte",
//"registerwrite",
//"registerread"
//"registerread",
};
public static string[] SaveStateFunctions = new string[] {
"saveslot",
"loadslot",
"save",
"load"
"load",
};
public static string[] MovieFunctions = new string[] {
"mode",
"rerecordcount",
"stop"
"stop",
};
public static string[] JoypadFunctions = new string[] {
"set"
//"get"
"set",
//"get",
};
public static string[] MultiClientFunctions = new string[] {
@ -274,7 +274,7 @@ namespace BizHawk.MultiClient
"openrampoke",
"openhexeditor",
"opentasstudio",
"opencheats"
"opencheats",
};
/****************************************************/