Commit dc5eed8e authored by nanahira's avatar nanahira

fix

parent 58acb47d
......@@ -1596,7 +1596,7 @@ public class DeckManager : ServantWithCardDescription
return Convert.ToBase64String(buffer);
}
private void writeInt32ToList(List<byte> array_list, int value) {
private static void writeInt32ToList(List<byte> array_list, int value) {
byte[] int_buffer = BitConverter.GetBytes(value);
for(int i = 0; i < 4; ++i) {
array_list.Add(int_buffer[i]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment