diff options
| author | Paul Buetow <paul@buetow.org> | 2008-06-14 17:35:44 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-06-14 17:35:44 +0000 |
| commit | dfed0ea3ecfd75d0d1b11adb7f06ab41b713ee0c (patch) | |
| tree | b222c56b9578aeb74c9bf016effe0c12123ce333 | |
| parent | 4ca2ea8d22b7c703a866de88f0d026b68a8f2822 (diff) | |
bugfix: after deserialization set process time to 0
| -rw-r--r-- | ROADMAP | 1 | ||||
| -rw-r--r-- | sources/core/VSProcess.java | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,3 @@ -bugfix: first load does not send messages (moormaster dat) bugfix: PID table col width Must do: Warn if a file does not exists while trying to open! diff --git a/sources/core/VSProcess.java b/sources/core/VSProcess.java index 03b03e5..68b8c86 100644 --- a/sources/core/VSProcess.java +++ b/sources/core/VSProcess.java @@ -1067,6 +1067,9 @@ public class VSProcess extends VSPrefs implements VSSerializable { protocol.deserialize(serialize, objectInputStream); } + localTime = 0; + setLong("process.localTime", localTime); + /** For later backwards compatibility, to add more stuff */ objectInputStream.readObject(); |
