[Android] Forgot to document the new parameter used in SaveConfigToDolphinIni() in the last change. Fixed that.
This commit is contained in:
parent
9595457e1c
commit
dd35156717
|
@ -13,7 +13,11 @@ import android.preference.PreferenceManager;
|
||||||
*/
|
*/
|
||||||
public final class UserPreferences
|
public final class UserPreferences
|
||||||
{
|
{
|
||||||
/** Writes the config to the Dolphin ini file. */
|
/**
|
||||||
|
* Writes the config to the Dolphin ini file.
|
||||||
|
*
|
||||||
|
* @param ctx The context used to retrieve the user settings.
|
||||||
|
* */
|
||||||
public static void SaveConfigToDolphinIni(Context ctx)
|
public static void SaveConfigToDolphinIni(Context ctx)
|
||||||
{
|
{
|
||||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ctx);
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ctx);
|
||||||
|
|
Loading…
Reference in New Issue