Skip to content

Commit

Permalink
XEEN: Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jan 2, 2015
1 parent 9a8cb48 commit 21d981f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 19 deletions.
6 changes: 5 additions & 1 deletion engines/xeen/darkside/darkside_game.cpp
Expand Up @@ -181,7 +181,7 @@ void DarkSideEngine::showStartSequence() {
int idx1 = 0;
bool skipElapsed = false;
uint32 timeExpired = 0;
bool fadeFlag = true;
// bool fadeFlag = true;

for (int idx = 200; idx > 0; ) {
_events->updateGameCounter();
Expand Down Expand Up @@ -218,6 +218,10 @@ void DarkSideEngine::showStartSequence() {

_events->updateGameCounter();
pause(30);

// TODO: More
_sound->playMusic(voc[0]);
_sound->playMusic(voc[1]);
}

} // End of namespace Xeen
3 changes: 2 additions & 1 deletion engines/xeen/debugger.cpp
Expand Up @@ -25,7 +25,7 @@
#include "xeen/debugger.h"

namespace Xeen {

/*
static int strToInt(const char *s) {
if (!*s)
// No string at all
Expand All @@ -41,6 +41,7 @@ static int strToInt(const char *s) {
error("strToInt failed on string \"%s\"", s);
return (int)tmp;
}
*/

/*------------------------------------------------------------------------*/

Expand Down
34 changes: 17 additions & 17 deletions engines/xeen/resources.cpp
Expand Up @@ -26,42 +26,42 @@
namespace Xeen {

const char *const CREDITS =
"\013012\010000\003c\01435Designed and Directed By:\n"
"\01417Jon Van Caneghem\003l\n"
"\013""012\010""000\003""c\014""35Designed and Directed By:\n"
"\014""17Jon Van Caneghem\003""l\n"
"\n"
"\t025\01435Programming:\n"
"\t035\01417Mark Caldwell\n"
"\t025\014""35Programming:\n"
"\t035\014""17Mark Caldwell\n"
"\t035Dave Hathaway\n"
"\n"
"\t025\01435Sound System & FX:\n"
"\t035\01417Mike Heilemann\n"
"\t025\014""35Sound System & FX:\n"
"\t035\014""17Mike Heilemann\n"
"\n"
"\t025\01435Music & Speech:\n"
"\t035\01417Tim Tully\n"
"\t025\014""35Music & Speech:\n"
"\t035\014""17Tim Tully\n"
"\n"
"\t025\01435Writing:\n"
"\t035\01417Paul Rattner\n"
"\t025\014""35Writing:\n"
"\t035\014""17Paul Rattner\n"
"\t035Debbie Van Caneghem\n"
"\t035Jon Van Caneghem\013012\n"
"\t035Jon Van Caneghem\013""012\n"
"\n"
"\n"
"\t180\01435Graphics:\n"
"\t190\01417Jonathan P. Gwyn\n"
"\t180\014""35Graphics:\n"
"\t190\014""17Jonathan P. Gwyn\n"
"\t190Bonita Long-Hemsath\n"
"\t190Julia Ulano\n"
"\t190Ricardo Barrera\n"
"\n"
"\t180\01435Testing:\n"
"\t190\01417Benjamin Bent\n"
"\t180\014""35Testing:\n"
"\t190\014""17Benjamin Bent\n"
"\t190Christian Dailey\n"
"\t190Mario Escamilla\n"
"\t190Marco Hunter\n"
"\t190Robert J. Lupo\n"
"\t190Clayton Retzer\n"
"\t190David Vela\003c";
"\t190David Vela\003""c";

const char *const OPTIONS_TITLE =
"\x0D\x01\003c\014dMight and Magic Options\n"
"\x0D\x01\003""c\014""dMight and Magic Options\n"
"World of Xeen\x02\n"
"\v117Copyright (c) 1993 NWC, Inc.\n"
"All Rights Reserved\x01";
Expand Down

0 comments on commit 21d981f

Please sign in to comment.