diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/net/messagein.cpp | 2 | ||||
-rw-r--r-- | src/resources/image.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/net/messagein.cpp b/src/net/messagein.cpp index ebf1366f..c7760c82 100644 --- a/src/net/messagein.cpp +++ b/src/net/messagein.cpp @@ -96,7 +96,7 @@ MessageIn::readCoordinates(unsigned short &x, void MessageIn::readCoordinatePair(unsigned short &srcX, unsigned short &srcY, - unsigned short &dstX, unsigned short &dstY) + unsigned short &dstX, unsigned short &dstY) { assert(mPos + 5 <= mLength); diff --git a/src/resources/image.cpp b/src/resources/image.cpp index 6910bd55..27fc6497 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -75,7 +75,7 @@ Image* Image::load(void* buffer, unsigned int bufferSize, const std::string &idP SDL_Surface *tmpImage = IMG_Load_RW(rw, 1); if (tmpImage == NULL) { - logger->log("Error, image load failed"); + logger->log("Error, image load failed: %s", IMG_GetError()); return NULL; } |