mirror of https://github.com/stella-emu/stella.git
Fix minor initialization warning.
This commit is contained in:
parent
4b79864ccc
commit
d6c1481d17
|
@ -56,8 +56,7 @@ class JPGLibrary
|
||||||
// The following data remains between invocations of allocateStorage,
|
// The following data remains between invocations of allocateStorage,
|
||||||
// and is only changed when absolutely necessary.
|
// and is only changed when absolutely necessary.
|
||||||
struct ReadInfoType {
|
struct ReadInfoType {
|
||||||
unsigned char* buffer;
|
unsigned char* buffer{nullptr};
|
||||||
//vector<unsigned char> buffer;
|
|
||||||
uInt32 width{0}, height{0}, pitch{0};
|
uInt32 width{0}, height{0}, pitch{0};
|
||||||
};
|
};
|
||||||
ReadInfoType myReadInfo;
|
ReadInfoType myReadInfo;
|
||||||
|
|
Loading…
Reference in New Issue