diff options
| author | Max Horn | 2003-10-03 18:33:57 +0000 |
|---|---|---|
| committer | Max Horn | 2003-10-03 18:33:57 +0000 |
| commit | d7660a2662be298dad3cf9b320137dac8744d456 (patch) | |
| tree | c80ddb2c4fb1917660db0010bb0b3d6ed8d57b24 /scumm/string.cpp | |
| parent | eabeb62e20a8ed2117e19ca3bf04bb1d33637b79 (diff) | |
| download | scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.gz scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.bz2 scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.zip | |
introduced namespace Scumm; made #include statements use scumm/ prefix explicitly
svn-id: r10571
Diffstat (limited to 'scumm/string.cpp')
| -rw-r--r-- | scumm/string.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index c9183e938a..21db644efc 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -21,13 +21,15 @@ */ #include "stdafx.h" -#include "scumm.h" -#include "actor.h" -#include "charset.h" -#include "dialogs.h" -#include "verbs.h" +#include "scumm/scumm.h" +#include "scumm/actor.h" +#include "scumm/charset.h" +#include "scumm/dialogs.h" +#include "scumm/verbs.h" #include "scumm/sound.h" +namespace Scumm { + void ScummEngine::setStringVars(int slot) { StringTab *st = &_string[slot]; st->xpos = st->t_xpos; @@ -947,3 +949,4 @@ void ScummEngine::translateText(const byte *text, byte *trans_buff) { } } +} // End of namespace Scumm |
