コード例 #1
0
ファイル: Lua.cs プロジェクト: SuuperW/DeSmuME-Watch
 public string FormatFixedPointValues(float currentValue, float change, bool displayChange = true, bool exactDisplay = true, int digitsPastRadix = 0)
 {
     return(SimpleWatchDisplay.FormatFixedPointValues(currentValue, change, displayChange, exactDisplay, digitsPastRadix));
 }
コード例 #2
0
ファイル: Lua.cs プロジェクト: SuuperW/DeSmuME-Watch
 public string FormatIntegerValues(int currentValue, int change, bool displayChange = true, bool asHex = false, bool asSigned = true)
 {
     return(SimpleWatchDisplay.FormatIntegerValues(currentValue, change, displayChange, asHex, asSigned));
 }