diff options
author | eriktorbjorn | 2011-02-12 22:16:53 +0100 |
---|---|---|
committer | eriktorbjorn | 2011-02-12 22:16:53 +0100 |
commit | 87e832809bd6e23fa71071fb4fd7a3a27f88f12e (patch) | |
tree | 952f0e8d2d690433dcfb6a53cee18498e0888f4f | |
parent | cb9ddad8985fbfbfc8b3f1b729df960c47be415b (diff) | |
download | scummvm-rg350-87e832809bd6e23fa71071fb4fd7a3a27f88f12e.tar.gz scummvm-rg350-87e832809bd6e23fa71071fb4fd7a3a27f88f12e.tar.bz2 scummvm-rg350-87e832809bd6e23fa71071fb4fd7a3a27f88f12e.zip |
JANITORIAL: Remove unnecessary semicolon
I'm glad there's always a supply of those, because they make for
great test commits.
-rw-r--r-- | engines/mohawk/cstime_ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/cstime_ui.cpp b/engines/mohawk/cstime_ui.cpp index a21ed49647..c95e276b5e 100644 --- a/engines/mohawk/cstime_ui.cpp +++ b/engines/mohawk/cstime_ui.cpp @@ -1259,7 +1259,7 @@ CSTimeBook::~CSTimeBook() { void CSTimeBook::drawSmallBook() { if (!_smallBookFeature) { - _smallBookFeature = _vm->getView()->installViewFeature(101, kFeatureSortStatic | kFeatureNewNoLoop, NULL);; + _smallBookFeature = _vm->getView()->installViewFeature(101, kFeatureSortStatic | kFeatureNewNoLoop, NULL); } else { _smallBookFeature->resetFeature(false, NULL, 0); } |