additional fixes + some missed files

This commit is contained in:
BetaSteward 2011-02-24 22:02:32 -05:00
parent 1945538041
commit 51a9c03ed1
8 changed files with 224 additions and 4 deletions

View file

@ -369,7 +369,7 @@ public class TableController {
private Game loadGame() {
try{
InputStream file = new FileInputStream("saved/" + match.getGame().toString() + ".game");
InputStream file = new FileInputStream("saved/" + match.getGame().getId().toString() + ".game");
InputStream buffer = new BufferedInputStream(file);
ObjectInput input = new CopierObjectInputStream(Main.classLoader, new GZIPInputStream(buffer));
try {