From dd3515671723635aaed9f785581c335efa82e8bc Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 19 Aug 2013 22:37:04 -0400 Subject: [PATCH] [Android] Forgot to document the new parameter used in SaveConfigToDolphinIni() in the last change. Fixed that. --- .../src/org/dolphinemu/dolphinemu/UserPreferences.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/UserPreferences.java b/Source/Android/src/org/dolphinemu/dolphinemu/UserPreferences.java index f5747db9f5..ef33905b6b 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/UserPreferences.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/UserPreferences.java @@ -13,7 +13,11 @@ import android.preference.PreferenceManager; */ 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) { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ctx);