summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/commandhandler.cpp2
-rw-r--r--src/resources/imageset.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp
index b1bf3b756..51d1bdf78 100644
--- a/src/commandhandler.cpp
+++ b/src/commandhandler.cpp
@@ -1101,7 +1101,7 @@ void CommandHandler::handleWait(const std::string &args,
player_node->waitFor(args);
}
-void CommandHandler::handleUptime(const std::string &args,
+void CommandHandler::handleUptime(const std::string &args _UNUSED_,
ChatTab *tab _UNUSED_)
{
if (!debugChatTab)
diff --git a/src/resources/imageset.cpp b/src/resources/imageset.cpp
index 33a66cd11..d1fceea69 100644
--- a/src/resources/imageset.cpp
+++ b/src/resources/imageset.cpp
@@ -53,7 +53,7 @@ ImageSet::~ImageSet()
Image* ImageSet::get(size_type i) const
{
- if (i >= mImages.size() || i < 0)
+ if (i >= mImages.size())
{
logger->log("Warning: No sprite %d in this image set", (int) i);
return NULL;