correct dynapi
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
diff --git a/include/SDL_system.h b/include/SDL_system.h
index adf1c03..e62c9e5 100644
--- a/include/SDL_system.h
+++ b/include/SDL_system.h
@@ -216,19 +216,19 @@ extern DECLSPEC const char * SDLCALL SDL_AndroidGetExternalStoragePath(void);
extern DECLSPEC SDL_bool SDLCALL SDL_AndroidRequestPermission(const char *permission);
/**
- \brief Show android toast notification
-
- Show toast in UI thread [https://developer.android.com/guide/topics/ui/notifiers/toasts]
- Params description
- message : text message to be shown
- duration : 0 - short [https://developer.android.com/reference/android/widget/Toast#LENGTH_SHORT],
- 1 - long [https://developer.android.com/reference/android/widget/Toast#LENGTH_LONG]
- gravity : the location at which the notification should appear on the screen.
- It's an optional parameter. Set -1 if you don't want specify any gravity or
- choose some value from https://developer.android.com/reference/android/view/Gravity
- xOffset : set this parameter only when gravity >=0
- yOffset : set this parameter only when gravity >=0
- Returns 0 if success, -1 if any error occured.
+ \brief Shows android toast notification
+
+ \note Shows toast in UI thread [https://developer.android.com/guide/topics/ui/notifiers/toasts]
+
+ \param message : text message to be shown
+ duration : 0 - short [https://developer.android.com/reference/android/widget/Toast#LENGTH_SHORT],
+ 1 - long [https://developer.android.com/reference/android/widget/Toast#LENGTH_LONG]
+ gravity : the location at which the notification should appear on the screen.
+ It's an optional parameter. Set -1 if you don't want specify any gravity or
+ choose some value from https://developer.android.com/reference/android/view/Gravity
+ xOffset : set this parameter only when gravity >=0
+ yOffset : set this parameter only when gravity >=0
+ \return 0 if success, -1 if any error occurs.
*/
extern DECLSPEC int SDLCALL SDL_AndroidShowToast(const char* message, int duration, int gravity, int xOffset, int yOffset);
diff --git a/src/dynapi/SDL_dynapi_overrides.h b/src/dynapi/SDL_dynapi_overrides.h
index e32cd1f..60fe388 100644
--- a/src/dynapi/SDL_dynapi_overrides.h
+++ b/src/dynapi/SDL_dynapi_overrides.h
@@ -766,7 +766,6 @@
#define SDL_GetPreferredLocales SDL_GetPreferredLocales_REAL
#define SDL_SIMDRealloc SDL_SIMDRealloc_REAL
#define SDL_AndroidRequestPermission SDL_AndroidRequestPermission_REAL
-#define SDL_AndroidShowToast SDL_AndroidShowToast_REAL
#define SDL_OpenURL SDL_OpenURL_REAL
#define SDL_HasSurfaceRLE SDL_HasSurfaceRLE_REAL
#define SDL_GameControllerHasLED SDL_GameControllerHasLED_REAL
@@ -808,3 +807,4 @@
#define SDL_ispunct SDL_ispunct_REAL
#define SDL_isprint SDL_isprint_REAL
#define SDL_isgraph SDL_isgraph_REAL
+#define SDL_AndroidShowToast SDL_AndroidShowToast_REAL
diff --git a/src/dynapi/SDL_dynapi_procs.h b/src/dynapi/SDL_dynapi_procs.h
index 61437c8..78a8255 100644
--- a/src/dynapi/SDL_dynapi_procs.h
+++ b/src/dynapi/SDL_dynapi_procs.h
@@ -826,7 +826,6 @@ SDL_DYNAPI_PROC(SDL_Locale *,SDL_GetPreferredLocales,(void),(),return)
SDL_DYNAPI_PROC(void*,SDL_SIMDRealloc,(void *a, const size_t b),(a, b),return)
#ifdef __ANDROID__
SDL_DYNAPI_PROC(SDL_bool,SDL_AndroidRequestPermission,(const char *a),(a),return)
-SDL_DYNAPI_PROC(int,SDL_AndroidShowToast,(const char* message, int duration, int gravity, int xOffset, int yOffset),(message,duration,gravity,xOffset,yOffset),return)
#endif
SDL_DYNAPI_PROC(int,SDL_OpenURL,(const char *a),(a),return)
SDL_DYNAPI_PROC(SDL_bool,SDL_HasSurfaceRLE,(SDL_Surface *a),(a),return)
@@ -871,3 +870,6 @@ SDL_DYNAPI_PROC(int,SDL_isxdigit,(int a),(a),return)
SDL_DYNAPI_PROC(int,SDL_ispunct,(int a),(a),return)
SDL_DYNAPI_PROC(int,SDL_isprint,(int a),(a),return)
SDL_DYNAPI_PROC(int,SDL_isgraph,(int a),(a),return)
+#ifdef __ANDROID__
+SDL_DYNAPI_PROC(int,SDL_AndroidShowToast,(const char *a, int b, int c, int d, int e),(a,b,c,d,e),return)
+#endif