aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_hof.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-05-17 23:29:44 +0000
committerJohannes Schickel2010-05-17 23:29:44 +0000
commit0fe2ba6a0dd1bc7a3edda7ed8deaeba10f39ab9b (patch)
treeb8a6a807c6ceaccbce4f66c9740315999616ed38 /engines/kyra/kyra_hof.cpp
parentcbbb78d9f29672e0f78724344040a692018fa3a5 (diff)
downloadscummvm-rg350-0fe2ba6a0dd1bc7a3edda7ed8deaeba10f39ab9b.tar.gz
scummvm-rg350-0fe2ba6a0dd1bc7a3edda7ed8deaeba10f39ab9b.tar.bz2
scummvm-rg350-0fe2ba6a0dd1bc7a3edda7ed8deaeba10f39ab9b.zip
Some more enforcement of our formatting conventions in KYRA too.
svn-id: r49069
Diffstat (limited to 'engines/kyra/kyra_hof.cpp')
-rw-r--r--engines/kyra/kyra_hof.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/kyra_hof.cpp b/engines/kyra/kyra_hof.cpp
index 953fe246bc..2716f0b285 100644
--- a/engines/kyra/kyra_hof.cpp
+++ b/engines/kyra/kyra_hof.cpp
@@ -125,7 +125,7 @@ KyraEngine_HoF::KyraEngine_HoF(OSystem *system, const GameFlags &flags) : KyraEn
_inventoryButtons = _buttonList = 0;
_dlgBuffer = 0;
- _conversationState = new int8*[19];
+ _conversationState = new int8 *[19];
for (int i = 0; i < 19; i++)
_conversationState[i] = new int8[14];
_npcTalkChpIndex = _npcTalkDlgIndex = -1;
@@ -172,7 +172,7 @@ KyraEngine_HoF::~KyraEngine_HoF() {
delete[] _conversationState[i];
delete[] _conversationState;
- for (Common::Array<const TIMOpcode*>::iterator i = _timOpcodes.begin(); i != _timOpcodes.end(); ++i)
+ for (Common::Array<const TIMOpcode *>::iterator i = _timOpcodes.begin(); i != _timOpcodes.end(); ++i)
delete *i;
_timOpcodes.clear();
}