diff options
Diffstat (limited to 'player-image.h')
-rw-r--r-- | player-image.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/player-image.h b/player-image.h index c58da6a..d307778 100644 --- a/player-image.h +++ b/player-image.h @@ -27,16 +27,22 @@ struct cShellWrapper { char* szCmd; char* szPNM; char szNumber; - bool bClearBackground; unsigned int nOffLeft; unsigned int nOffTop; unsigned int nWidth; unsigned int nHeight; + bool bClearBackground; cShellWrapper() : szCmd(NULL) , szPNM(NULL) , szNumber('\0') + , nOffLeft(0) + , nOffTop(0) + , nWidth(0) + , nHeight(0) + , bClearBackground(false) + { } |