mirror of https://github.com/stella-emu/stella.git
Updates for VC.net project.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@916 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
e3b7a56833
commit
2564e924ba
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||||
//
|
//
|
||||||
// $Id: Deserializer.cxx,v 1.8 2005-12-17 22:48:24 stephena Exp $
|
// $Id: Deserializer.cxx,v 1.9 2005-12-18 22:28:05 stephena Exp $
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
#include "Deserializer.hxx"
|
#include "Deserializer.hxx"
|
||||||
|
@ -47,7 +47,7 @@ void Deserializer::close(void)
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
bool Deserializer::isOpen(void)
|
bool Deserializer::isOpen(void)
|
||||||
{
|
{
|
||||||
return myStream && myStream.is_open();
|
return myStream.is_open();
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
|
@ -421,6 +421,9 @@ opengl32.lib"
|
||||||
<File
|
<File
|
||||||
RelativePath="..\emucore\MD5.cxx">
|
RelativePath="..\emucore\MD5.cxx">
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\emucore\MediaFactory.cxx">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\emucore\MediaSrc.cxx">
|
RelativePath="..\emucore\MediaSrc.cxx">
|
||||||
</File>
|
</File>
|
||||||
|
@ -906,6 +909,9 @@ opengl32.lib"
|
||||||
<File
|
<File
|
||||||
RelativePath="..\emucore\MD5.hxx">
|
RelativePath="..\emucore\MD5.hxx">
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\emucore\MediaFactory.hxx">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\emucore\MediaSrc.hxx">
|
RelativePath="..\emucore\MediaSrc.hxx">
|
||||||
</File>
|
</File>
|
||||||
|
|
|
@ -36,8 +36,8 @@ IDI_ICON ICON "stella.ico"
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 2,0,1,0
|
FILEVERSION 2,1,0,0
|
||||||
PRODUCTVERSION 2,0,1,0
|
PRODUCTVERSION 2,1,0,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -55,12 +55,12 @@ BEGIN
|
||||||
VALUE "Comments", "The multi-platform Atari 2600 emulator. Stella is released under the GPL."
|
VALUE "Comments", "The multi-platform Atari 2600 emulator. Stella is released under the GPL."
|
||||||
VALUE "CompanyName", "Bradford W. Mott and the Stella team (http://stella.sourceforge.net)"
|
VALUE "CompanyName", "Bradford W. Mott and the Stella team (http://stella.sourceforge.net)"
|
||||||
VALUE "FileDescription", "Stella"
|
VALUE "FileDescription", "Stella"
|
||||||
VALUE "FileVersion", "2.0.1"
|
VALUE "FileVersion", "2.1"
|
||||||
VALUE "InternalName", "Stella"
|
VALUE "InternalName", "Stella"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 1995-2005 B. Mott & the Stella team"
|
VALUE "LegalCopyright", "Copyright (C) 1995-2005 B. Mott & the Stella team"
|
||||||
VALUE "OriginalFilename", "Stella.exe"
|
VALUE "OriginalFilename", "Stella.exe"
|
||||||
VALUE "ProductName", "Stella"
|
VALUE "ProductName", "Stella"
|
||||||
VALUE "ProductVersion", "2.0.1"
|
VALUE "ProductVersion", "2.1"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
Loading…
Reference in New Issue