diff options
author | uruk | 2013-06-17 15:45:25 +0200 |
---|---|---|
committer | uruk | 2013-06-17 15:45:25 +0200 |
commit | a3025b8dad7abfe845c57aee3703451c223fc2e6 (patch) | |
tree | 0db7ddf29af49e18f314317beee4ecabbcc1e979 /engines/avalanche/makeregi.cpp | |
parent | 7939ab1f62959c19a18dfe3d54aef0d0175a3b1d (diff) | |
download | scummvm-rg350-a3025b8dad7abfe845c57aee3703451c223fc2e6.tar.gz scummvm-rg350-a3025b8dad7abfe845c57aee3703451c223fc2e6.tar.bz2 scummvm-rg350-a3025b8dad7abfe845c57aee3703451c223fc2e6.zip |
AVALANCHE: Add namespace.
Diffstat (limited to 'engines/avalanche/makeregi.cpp')
-rw-r--r-- | engines/avalanche/makeregi.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/avalanche/makeregi.cpp b/engines/avalanche/makeregi.cpp index 89b66d73eb..35b37d227f 100644 --- a/engines/avalanche/makeregi.cpp +++ b/engines/avalanche/makeregi.cpp @@ -27,6 +27,8 @@ /* regname's name starts at $7D1 (2001). */ +namespace Avalanche { + const array<1,56,char> padding = "For all the Etruscan armies were ranged beneath his eye"; @@ -164,4 +166,6 @@ int main(int argc, const char* argv[]) close(txi); close(txo); return EXIT_SUCCESS; -}
\ No newline at end of file +} + +} // End of namespace Avalanche.
\ No newline at end of file |