1
0
mirror of https://github.com/chylex/Code-Statistics.git synced 2025-07-27 16:59:08 +02:00

Fix broken decimal format after the code formatting change

This commit is contained in:
chylex 2016-10-02 17:14:12 +02:00
parent 2bfe0abc0a
commit 312d86126a

View File

@ -44,7 +44,7 @@ namespace CodeStatisticsCore.Handling{
public void SetVariable(string name, float value){
variablesInt[name] = (int)Math.Round(value);
variables[name] = value.ToString("#, 0.#", NumberFormat);
variables[name] = value.ToString("#,0.#", NumberFormat);
}
public void Increment(string name, int amount = 1){