aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorColin Snover2017-02-17 00:17:11 -0600
committerColin Snover2017-04-23 13:07:25 -0500
commit0394fd44e8d1b4e20cbf465365fef1ad0e8bf658 (patch)
treefea50d84a8e470cbb7a89b0d76dd4b82dcf992fc /engines
parent61fba94139c25c9c91c2f07c8282fa6aaa610a71 (diff)
downloadscummvm-rg350-0394fd44e8d1b4e20cbf465365fef1ad0e8bf658.tar.gz
scummvm-rg350-0394fd44e8d1b4e20cbf465365fef1ad0e8bf658.tar.bz2
scummvm-rg350-0394fd44e8d1b4e20cbf465365fef1ad0e8bf658.zip
SCI: Fix whitespace errors
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/script.cpp2
-rw-r--r--engines/sci/engine/scriptdebug.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/script.cpp b/engines/sci/engine/script.cpp
index f24437346b..8479e43479 100644
--- a/engines/sci/engine/script.cpp
+++ b/engines/sci/engine/script.cpp
@@ -696,7 +696,7 @@ static bool relocateBlock(Common::Array<reg_t> &block, int block_location, Segme
int Script::relocateOffsetSci3(uint32 offset) const {
int relocStart = _buf->getUint32LEAt(8);
int relocCount = _buf->getUint16LEAt(18);
- SciSpan <const byte> seeker = _buf->subspan(relocStart);
+ SciSpan<const byte> seeker = _buf->subspan(relocStart);
for (int i = 0; i < relocCount; ++i) {
if (seeker.getUint32SEAt(0) == offset) {
diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp
index 6c54890810..54f7d526fc 100644
--- a/engines/sci/engine/scriptdebug.cpp
+++ b/engines/sci/engine/scriptdebug.cpp
@@ -461,7 +461,7 @@ void SciEngine::scriptDebug() {
_console->attach();
}
-void Kernel::dumpScriptObject(const SciSpan<const byte> &script, SciSpan <const byte> object) {
+void Kernel::dumpScriptObject(const SciSpan<const byte> &script, SciSpan<const byte> object) {
const int16 species = object.getInt16SEAt(8);
const int16 superclass = object.getInt16SEAt(10);
const int16 namepos = object.getInt16SEAt(14);