From 95b86556d46ee7fd35715f2f99072d8f2840b0fe Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Tue, 26 Apr 2016 11:52:32 -0400 Subject: [PATCH] Formatting fix modified: README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c663dfc..b55a94a 100644 --- a/README.md +++ b/README.md @@ -106,16 +106,16 @@ typedef struct { } NmsArgs; ``` * `char *src` -⋅⋅⋅Pointer to the string of characters on which to perform the effect. + Pointer to the string of characters on which to perform the effect. Useful for displaying menus: * `char *return_opts` -⋅⋅⋅String pointer containg only the character options that the user must choose from once the src characters are revealed. For example, if you are showing a menu with six options, this string might be "123456". The user will have to choose one of these characters before execution is handed back to the calling function. Note that the character selected is returned by `nms_exec()`; + String pointer containg only the character options that the user must choose from once the src characters are revealed. For example, if you are showing a menu with six options, this string might be "123456". The user will have to choose one of these characters before execution is handed back to the calling function. Note that the character selected is returned by `nms_exec()`; * `int input_cursor_x` and `int input_cursor_y` -⋅⋅⋅If your menu has a specific location that you'd like to place the cursor for user input, use these to set the x and y screen corrdinates for the position. + If your menu has a specific location that you'd like to place the cursor for user input, use these to set the x and y screen corrdinates for the position. * `bool show_cursor` -⋅⋅⋅Set to `true` if you want the cursor to be visible during the text decryption effect. It is set to `false` by default. + Set to `true` if you want the cursor to be visible during the text decryption effect. It is set to `false` by default. Assign values to the structure members as needed. Then simply pass a pointer to the structure to the nms_exec() function: