summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--java/src/com/tightvnc/rfbplayer/FbsConnection.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/java/src/com/tightvnc/rfbplayer/FbsConnection.java b/java/src/com/tightvnc/rfbplayer/FbsConnection.java
index 66d9e54b..3dc2cf59 100644
--- a/java/src/com/tightvnc/rfbplayer/FbsConnection.java
+++ b/java/src/com/tightvnc/rfbplayer/FbsConnection.java
@@ -35,6 +35,7 @@ public class FbsConnection {
/** Index data loaded from the .fbi file. */
FbsEntryPoint[] idx;
+ int numIndexRecords;
FbsConnection(String fbsLocation, String indexLocationPrefix, Applet applet)
throws MalformedURLException {
@@ -57,6 +58,7 @@ public class FbsConnection {
// Try to load the .fbi index file.
idx = null;
+ numIndexRecords = 0;
loadIndex();
}
@@ -134,6 +136,7 @@ public class FbsConnection {
return;
}
idx = newIndex;
+ numIndexRecords = numRecordsRead;
System.err.println("Loaded index data, " + numRecordsRead + " records");
}
}