mirror of https://github.com/PCSX2/pcsx2.git
Fix a foopah, and get rid of the useless imdct warning.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1644 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
fc35912a52
commit
5b1700f98d
|
@ -503,6 +503,15 @@ void CycleFrameLimit(int dir)
|
|||
switch(newFrameLimit) {
|
||||
case PCSX2_FRAMELIMIT_NORMAL:
|
||||
limitMsg = "None/Normal";
|
||||
//Disables eventually enabled vsync
|
||||
if(GSsetFrameLimit == NULL)
|
||||
{
|
||||
DevCon::Notice("Notice: GS Plugin does not implement GSsetFrameLimit.");
|
||||
}
|
||||
else
|
||||
{
|
||||
GSsetFrameLimit(0);
|
||||
}
|
||||
break;
|
||||
case PCSX2_FRAMELIMIT_LIMIT:
|
||||
limitMsg = "Limit";
|
||||
|
|
|
@ -425,7 +425,7 @@ void a52_imdct_init (uint32_t mm_accel)
|
|||
} else
|
||||
#endif
|
||||
{
|
||||
fprintf (stderr, "No accelerated IMDCT transform found\n");
|
||||
//fprintf (stderr, "No accelerated IMDCT transform found\n");
|
||||
ifft128 = ifft128_c;
|
||||
ifft64 = ifft64_c;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue