diff --git a/build.properties b/build.properties
index 233daf6a..51cce312 100644
--- a/build.properties
+++ b/build.properties
@@ -6,7 +6,7 @@
PROJECT: openseadragon
BUILD_MAJOR: 0
BUILD_MINOR: 9
-BUILD_ID: 32
+BUILD_ID: 33
BUILD: ${PROJECT}.${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID}
VERSION: ${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID}
diff --git a/openseadragon.js b/openseadragon.js
index 5026a275..8787e60b 100644
--- a/openseadragon.js
+++ b/openseadragon.js
@@ -1,5 +1,5 @@
/**
- * @version OpenSeadragon 0.9.32
+ * @version OpenSeadragon 0.9.33
*
* @fileOverview
*
@@ -6511,11 +6511,8 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le
levelOpacity,
currentTime
);
-
- } else if ( tile.Loading ) {
- //TODO: .Loading is never defined... did they mean .loading?
- // but they didnt do anything so what is this block if
- // if it does nothing?
+ } else if ( tile.loading ) {
+ // the tile is already in the download queue
} else {
best = compareTiles( best, tile );
}
diff --git a/src/drawer.js b/src/drawer.js
index 24c44cc4..75817eff 100644
--- a/src/drawer.js
+++ b/src/drawer.js
@@ -573,11 +573,8 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le
levelOpacity,
currentTime
);
-
- } else if ( tile.Loading ) {
- //TODO: .Loading is never defined... did they mean .loading?
- // but they didnt do anything so what is this block if
- // if it does nothing?
+ } else if ( tile.loading ) {
+ // the tile is already in the download queue
} else {
best = compareTiles( best, tile );
}