aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics
diff options
context:
space:
mode:
authorJohannes Schickel2012-07-25 21:11:45 +0200
committerJohannes Schickel2012-07-25 21:11:45 +0200
commitdc8d9f4c9f7498f501b567262d0e90229b973e6e (patch)
tree24ef17abbb2136f4f750eb72ff2aeaf1aeaa4780 /engines/sci/graphics
parent3351707b2dbaba0d6b4bd21d4f62c2653f5a9354 (diff)
downloadscummvm-rg350-dc8d9f4c9f7498f501b567262d0e90229b973e6e.tar.gz
scummvm-rg350-dc8d9f4c9f7498f501b567262d0e90229b973e6e.tar.bz2
scummvm-rg350-dc8d9f4c9f7498f501b567262d0e90229b973e6e.zip
SCI: Fix delete[] formatting.
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r--engines/sci/graphics/font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/font.cpp b/engines/sci/graphics/font.cpp
index fcdd057509..30184cc091 100644
--- a/engines/sci/graphics/font.cpp
+++ b/engines/sci/graphics/font.cpp
@@ -54,7 +54,7 @@ GfxFontFromResource::GfxFontFromResource(ResourceManager *resMan, GfxScreen *scr
}
GfxFontFromResource::~GfxFontFromResource() {
- delete []_chars;
+ delete[] _chars;
_resMan->unlockResource(_resource);
}