mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 17:55:45 -04:00
PGXP: Allocate large storage dynamically
This causes performance issues on ARM otherwise.
This commit is contained in:
@ -61,6 +61,7 @@ void Initialize()
|
||||
void Shutdown()
|
||||
{
|
||||
// GTE::Shutdown();
|
||||
PGXP::Shutdown();
|
||||
}
|
||||
|
||||
void Reset()
|
||||
@ -128,7 +129,8 @@ bool DoState(StateWrapper& sw)
|
||||
if (sw.IsReading())
|
||||
{
|
||||
ClearICache();
|
||||
PGXP::Initialize();
|
||||
if (g_settings.gpu_pgxp_enable)
|
||||
PGXP::Initialize();
|
||||
}
|
||||
|
||||
return !sw.HasError();
|
||||
|
Reference in New Issue
Block a user