From 6778175f6d2ba33565b15d3b94c8eea4b0ec3215 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 2 Feb 2016 18:43:36 +0100 Subject: AGI: Fix formatting. This mostly enforces tabs for indentation and spaces for formatting. But also fixes spaces on empty lines, some extra/missing spaces. astyle + manual fixup --- engines/agi/words.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/agi/words.cpp') diff --git a/engines/agi/words.cpp b/engines/agi/words.cpp index 0b8a4f3809..32fa4cbff4 100644 --- a/engines/agi/words.cpp +++ b/engines/agi/words.cpp @@ -61,11 +61,11 @@ int Words::loadDictionary_v1(Common::File &f) { newWord->word = Common::String(str, k + 1); // myStrndup(str, k + 1); newWord->id = f.readUint16LE(); - + _dictionaryWords[firstCharNr].push_back(newWord); debug(3, "'%s' (%d)", newWord->word.c_str(), newWord->id); } - } while((uint8)str[0] != 0xFF); + } while ((uint8)str[0] != 0xFF); return errOK; } -- cgit v1.2.3