diff options
author | Eugene Sandulenko | 2015-11-18 00:48:31 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2015-11-18 00:48:31 +0100 |
commit | a373dab5dc9531b6fda47edf4b63b69c1e74d4c1 (patch) | |
tree | 480ae5430b3ccc6759afc7e17e19b5d75c77faa2 | |
parent | aa9b5e94b67d21262ff2806944c4c46818937d96 (diff) | |
download | scummvm-rg350-a373dab5dc9531b6fda47edf4b63b69c1e74d4c1.tar.gz scummvm-rg350-a373dab5dc9531b6fda47edf4b63b69c1e74d4c1.tar.bz2 scummvm-rg350-a373dab5dc9531b6fda47edf4b63b69c1e74d4c1.zip |
BBVS: Fix game title
-rw-r--r-- | engines/bbvs/detection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/bbvs/detection.cpp b/engines/bbvs/detection.cpp index 2e3c867c63..b6f56893e3 100644 --- a/engines/bbvs/detection.cpp +++ b/engines/bbvs/detection.cpp @@ -30,7 +30,7 @@ #include "graphics/thumbnail.h" static const PlainGameDescriptor bbvsGames[] = { - { "bbvs", "Beavis and Butthead in Virtual Stupidity" }, + { "bbvs", "Beavis and Butt-head in Virtual Stupidity" }, { 0, 0 } }; @@ -75,7 +75,7 @@ public: } virtual const char *getName() const { - return "MTV's Beavis and Butt-Head in Virtual Stupidity"; + return "MTV's Beavis and Butt-head in Virtual Stupidity"; } virtual const char *getOriginalCopyright() const { |