[Scummvm-cvs-logs] SF.net SVN: scummvm:[38270] scummvm/trunk/engines/sci
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Sun Feb 15 17:59:48 CET 2009
Revision: 38270
http://scummvm.svn.sourceforge.net/scummvm/?rev=38270&view=rev
Author: thebluegr
Date: 2009-02-15 16:59:48 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Silenced some more warnings
Modified Paths:
--------------
scummvm/trunk/engines/sci/scicore/versions.cpp
scummvm/trunk/engines/sci/sfx/mixer/soft.cpp
Modified: scummvm/trunk/engines/sci/scicore/versions.cpp
===================================================================
--- scummvm/trunk/engines/sci/scicore/versions.cpp 2009-02-15 16:57:36 UTC (rev 38269)
+++ scummvm/trunk/engines/sci/scicore/versions.cpp 2009-02-15 16:59:48 UTC (rev 38270)
@@ -179,7 +179,7 @@
{
FILE *file;
char buf[4];
- char header[] = {0x00, 0x00, 0x03, 0xf3};
+ unsigned char header[] = {0x00, 0x00, 0x03, 0xf3};
/* PC and Atari ST executable extensions */
if (strstr(filename, ".exe") || strstr(filename, ".EXE")
Modified: scummvm/trunk/engines/sci/sfx/mixer/soft.cpp
===================================================================
--- scummvm/trunk/engines/sci/sfx/mixer/soft.cpp 2009-02-15 16:57:36 UTC (rev 38269)
+++ scummvm/trunk/engines/sci/sfx/mixer/soft.cpp 2009-02-15 16:59:48 UTC (rev 38270)
@@ -830,6 +830,7 @@
int have_timestamp = 0;
sfx_timestamp_t start_timestamp; /* The timestamp at which the first frame will be played */
sfx_timestamp_t min_timestamp;
+ min_timestamp.secs = 0;
sfx_timestamp_t timestamp;
if (self->dev->get_output_timestamp)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list