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:
ramapcsx2 2009-08-17 10:36:53 +00:00
parent fc35912a52
commit 5b1700f98d
2 changed files with 10 additions and 1 deletions

View File

@ -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";

View File

@ -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;
}