diff options
author | uruk | 2014-05-13 17:04:51 +0200 |
---|---|---|
committer | uruk | 2014-05-13 17:04:51 +0200 |
commit | 4ee1ab07aea7d07a661b58770721f6edce4d5f18 (patch) | |
tree | 74c5b00cc98449a10eb1a334051b68fa471380e6 | |
parent | 78429a723863728b2c95f286a1c313cc6f17d010 (diff) | |
download | scummvm-rg350-4ee1ab07aea7d07a661b58770721f6edce4d5f18.tar.gz scummvm-rg350-4ee1ab07aea7d07a661b58770721f6edce4d5f18.tar.bz2 scummvm-rg350-4ee1ab07aea7d07a661b58770721f6edce4d5f18.zip |
CGE2: Add a self-not warning to Bitmap.
-rw-r--r-- | engines/cge2/bitmap.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/cge2/bitmap.cpp b/engines/cge2/bitmap.cpp index 77c7eb9c41..6237feaa5d 100644 --- a/engines/cge2/bitmap.cpp +++ b/engines/cge2/bitmap.cpp @@ -113,6 +113,8 @@ Bitmap::Bitmap(CGE2Engine *vm, const Bitmap &bmp) : _w(bmp._w), _h(bmp._h), _m(N Bitmap::~Bitmap() { free(_m); delete[] _v; + + warning("Bitmap: Don't forget to review the whole implemenation!"); } Bitmap &Bitmap::operator=(const Bitmap &bmp) { |