Removed love.window.checkMode (resolves issue #653, invalidates issue #592).

Also fixed love.window.setMode to fail instead of bug out when trying to set a fullscreen mode which is too large for the monitor.
This commit is contained in:
Alex Szpakowski
2013-09-19 18:13:52 -03:00
parent 74f26160da
commit ffe0485173
12 changed files with 60 additions and 125 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ char *b64_decode(const char *src, int slen, int &size)
char *dst = new char[size];
char *d = dst;
char in[4], out[3], v;
char in[4] = {0}, out[3], v;
int i, len, pos = 0;
while (pos <= slen)