reverse onLowMemory/onTrimMemory removal

we want to override the default behavior and do nothing instead
This commit is contained in:
ToadKing 2013-11-19 11:03:46 -05:00
parent 3f75bae4e5
commit 82104bc7e2

View File

@ -88,4 +88,14 @@ public final class RetroActivity extends NativeActivity
{
UserPreferences.readbackConfigFile(this);
}
@Override
public void onLowMemory()
{
}
@Override
public void onTrimMemory(int level)
{
}
}