|
@@ -31,7 +31,7 @@ public class Main
|
|
|
|
|
|
try
|
|
|
{
|
|
|
- FileInputStream file = new FileInputStream("savestate.shit");
|
|
|
+ FileInputStream file = new FileInputStream("savestate.gal");
|
|
|
ObjectInputStream object = new ObjectInputStream(file);
|
|
|
model = (Model)object.readObject();
|
|
|
object.close();
|
|
@@ -81,7 +81,7 @@ public class Main
|
|
|
{
|
|
|
try
|
|
|
{
|
|
|
- ObjectOutputStream output = new ObjectOutputStream(new FileOutputStream("savestate.shit"));
|
|
|
+ ObjectOutputStream output = new ObjectOutputStream(new FileOutputStream("savestate.gal"));
|
|
|
output.writeObject(model);
|
|
|
output.close();
|
|
|
} catch (Exception e)
|