love.graphics.getScissor now has a proper C++ module method

This commit is contained in:
Alex Szpakowski
2014-01-09 22:49:00 -04:00
parent c64b3d2527
commit fda005c5ff
9 changed files with 25 additions and 16 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ Module::~Module()
void Module::registerInstance(Module *instance)
{
if (instance == nullptr)
throw Exception("Module instance is NULL");
throw Exception("Module instance is null");
std::string name(instance->getName());
-1
View File
@@ -22,7 +22,6 @@
#define LOVE_MODULE_H
// LOVE
#include "runtime.h"
#include "Exception.h"
#include "Object.h"