mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-28 07:50:49 +00:00
Merge pull request #741 from unknownbrackets/misc
Log 1x1 matrix + fix Qt on Linux
This commit is contained in:
commit
11595b4852
@ -73,8 +73,8 @@ void Core_RunLoop()
|
||||
{
|
||||
#ifdef _WIN32
|
||||
GL_SwapBuffers();
|
||||
#endif
|
||||
coreState = CORE_RUNNING;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user