Merge pull request #741 from unknownbrackets/misc

Log 1x1 matrix + fix Qt on Linux
This commit is contained in:
Henrik Rydgård 2013-02-19 07:53:52 -08:00
commit 11595b4852
2 changed files with 2 additions and 1 deletions

View File

@ -73,8 +73,8 @@ void Core_RunLoop()
{
#ifdef _WIN32
GL_SwapBuffers();
#endif
coreState = CORE_RUNNING;
#endif
}
}
}

View File

@ -247,6 +247,7 @@ MatrixSize GetMtxSize(u32 op)
a += (b<<1);
switch (a)
{
case 0: ERROR_LOG(CPU, "Unexpected matrix size 1x1."); return M_2x2;
case 1: return M_2x2;
case 2: return M_3x3;
case 3: return M_4x4;