mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 10:17:22 +00:00
COMMON: Uninit field cleanup
This commit is contained in:
parent
321e758e3a
commit
e5881d3621
@ -49,6 +49,7 @@ QuickTimeParser::QuickTimeParser() {
|
||||
_scaleFactorY = 1;
|
||||
_resFork = new MacResManager();
|
||||
_disposeFileHandle = DisposeAfterUse::YES;
|
||||
_timeScale = 1;
|
||||
|
||||
initParseTable();
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ enum WinResourceType {
|
||||
|
||||
class WinResourceID {
|
||||
public:
|
||||
WinResourceID() { _idType = kIDTypeNull; }
|
||||
WinResourceID() { _idType = kIDTypeNull; _id = 0; }
|
||||
WinResourceID(String x) { _idType = kIDTypeString; _name = x; }
|
||||
WinResourceID(uint32 x) { _idType = kIDTypeNumerical; _id = x; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user