diff options
| author | Michael VanOverbeek <[email protected]> | 2017-02-16 00:46:33 +0000 |
|---|---|---|
| committer | Michael VanOverbeek <[email protected]> | 2017-02-16 00:46:33 +0000 |
| commit | ac0fcc6aced8fb8afcf16c110cc29b34810842de (patch) | |
| tree | 1a9ce13297872ed4fa42c26114809789443a3a3d /ShiftOS.Server.WebAdmin/Program.cs | |
| parent | 88194888fd8b654de583b52121f21ba32542e5c9 (diff) | |
| download | shiftos_thereturn-ac0fcc6aced8fb8afcf16c110cc29b34810842de.tar.gz shiftos_thereturn-ac0fcc6aced8fb8afcf16c110cc29b34810842de.tar.bz2 shiftos_thereturn-ac0fcc6aced8fb8afcf16c110cc29b34810842de.zip | |
Codepoints are now stored in 64-bit signed ints
Diffstat (limited to 'ShiftOS.Server.WebAdmin/Program.cs')
| -rw-r--r-- | ShiftOS.Server.WebAdmin/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.Server.WebAdmin/Program.cs b/ShiftOS.Server.WebAdmin/Program.cs index 145e97c..2f7bd72 100644 --- a/ShiftOS.Server.WebAdmin/Program.cs +++ b/ShiftOS.Server.WebAdmin/Program.cs @@ -336,7 +336,7 @@ namespace ShiftOS.Server.WebAdmin { if (System.IO.Directory.Exists("saves")) { - int cp = 0; + long cp = 0; foreach(var file in System.IO.Directory.GetFiles("saves")) { |
