mirror of https://github.com/stella-emu/stella.git
Re-enabled PNG support for Xcode, and fixed minor warnings.
This commit is contained in:
parent
519f9a3b21
commit
e865cde07b
|
@ -86,7 +86,7 @@ void Serializer::rewind()
|
|||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
uInt32 Serializer::size() const
|
||||
size_t Serializer::size() const
|
||||
{
|
||||
return myStream->tellp();
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ class Serializer
|
|||
/**
|
||||
Returns the current write pointer location.
|
||||
*/
|
||||
uInt32 size() const;
|
||||
size_t size() const;
|
||||
|
||||
/**
|
||||
Reads a byte value (unsigned 8-bit) from the current input stream.
|
||||
|
|
|
@ -3029,6 +3029,7 @@
|
|||
CHEATCODE_SUPPORT,
|
||||
DEBUGGER_SUPPORT,
|
||||
JOYSTICK_SUPPORT,
|
||||
PNG_SUPPORT,
|
||||
SOUND_SUPPORT,
|
||||
WINDOWED_SUPPORT,
|
||||
BSPF_MACOS,
|
||||
|
@ -3082,6 +3083,7 @@
|
|||
CHEATCODE_SUPPORT,
|
||||
DEBUGGER_SUPPORT,
|
||||
JOYSTICK_SUPPORT,
|
||||
PNG_SUPPORT,
|
||||
SOUND_SUPPORT,
|
||||
WINDOWED_SUPPORT,
|
||||
BSPF_MACOS,
|
||||
|
|
Loading…
Reference in New Issue