aboutsummaryrefslogtreecommitdiff
path: root/backends/fs
diff options
context:
space:
mode:
authorHubert Maier2019-10-08 08:26:11 +0200
committerFilippos Karapetis2019-10-08 11:32:30 +0300
commit6dd67641f1d22a311bb77a7a896f959bde2ecf9d (patch)
tree7d57375c2bdf744ffde85de687aeab9da447dc6f /backends/fs
parent7525be638eca2381328db6dd6b5b8d106535dc59 (diff)
downloadscummvm-rg350-6dd67641f1d22a311bb77a7a896f959bde2ecf9d.tar.gz
scummvm-rg350-6dd67641f1d22a311bb77a7a896f959bde2ecf9d.tar.bz2
scummvm-rg350-6dd67641f1d22a311bb77a7a896f959bde2ecf9d.zip
JANITORIAL: English and spacing
Diffstat (limited to 'backends/fs')
-rw-r--r--backends/fs/amigaos4/amigaos4-fs.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/backends/fs/amigaos4/amigaos4-fs.cpp b/backends/fs/amigaos4/amigaos4-fs.cpp
index 8cb3c8de13..1e7584062c 100644
--- a/backends/fs/amigaos4/amigaos4-fs.cpp
+++ b/backends/fs/amigaos4/amigaos4-fs.cpp
@@ -69,12 +69,12 @@ AmigaOSFilesystemNode::AmigaOSFilesystemNode() {
AmigaOSFilesystemNode::AmigaOSFilesystemNode(const Common::String &p) {
ENTER();
- // We need to explicitely open dos.library and it's IDOS interface.
- // Otherwise we will hit an IDOS NULL pointer after compiling a shared
- // binary with (shared) plugins.
+ // We need to explicitly open dos.library and its IDOS interface.
+ // Otherwise we will hit an IDOS NULL pointer after compiling a
+ // shared binary with (shared) plugins.
// The hit will happen on loading a game from any engine, if more
- // than one engine/plugin is available.
- DOSBase=IExec->OpenLibrary("dos.library",0);
+ // than one engine/(shared) plugin is available.
+ DOSBase = IExec->OpenLibrary("dos.library", 0);
IDOS = (struct DOSIFace *)IExec->GetInterface(DOSBase, "main", 1, NULL);
int offset = p.size();
@@ -113,7 +113,7 @@ AmigaOSFilesystemNode::AmigaOSFilesystemNode(const Common::String &p) {
IDOS->FreeDosObject(DOS_EXAMINEDATA, pExd);
}
- // Close dos.library and it's IDOS interface again.
+ // Close dos.library and its IDOS interface again.
IExec->DropInterface((struct Interface *)IDOS);
IExec->CloseLibrary(DOSBase);