Przeglądaj źródła

Make Placeholders more Professional

Matthew 1 rok temu
rodzic
commit
3c0dd6c25a

+ 1 - 1
nfc_maker/scenes/nfc_maker_scene_contact.c

@@ -16,7 +16,7 @@ void nfc_maker_scene_contact_on_enter(void* context) {
 
 
     text_input_set_header_text(text_input, "Enter First Name:");
     text_input_set_header_text(text_input, "Enter First Name:");
 
 
-    strlcpy(app->small_buf1, "Ben", SMALL_INPUT_LEN);
+    strlcpy(app->small_buf1, "John", SMALL_INPUT_LEN);
 
 
     text_input_set_result_callback(
     text_input_set_result_callback(
         text_input,
         text_input,

+ 1 - 1
nfc_maker/scenes/nfc_maker_scene_contact_last.c

@@ -16,7 +16,7 @@ void nfc_maker_scene_contact_last_on_enter(void* context) {
 
 
     text_input_set_header_text(text_input, "Enter Last Name:");
     text_input_set_header_text(text_input, "Enter Last Name:");
 
 
-    strlcpy(app->small_buf2, "Dover", SMALL_INPUT_LEN);
+    strlcpy(app->small_buf2, "Smith", SMALL_INPUT_LEN);
 
 
     text_input_set_result_callback(
     text_input_set_result_callback(
         text_input,
         text_input,

+ 1 - 1
nfc_maker/scenes/nfc_maker_scene_contact_mail.c

@@ -16,7 +16,7 @@ void nfc_maker_scene_contact_mail_on_enter(void* context) {
 
 
     text_input_set_header_text(text_input, "Enter Mail Address:");
     text_input_set_header_text(text_input, "Enter Mail Address:");
 
 
-    strlcpy(app->mail_buf, "ben.dover@yourmom.zip", MAIL_INPUT_LEN);
+    strlcpy(app->mail_buf, "johnsmith@email.com", MAIL_INPUT_LEN);
 
 
     text_input_set_result_callback(
     text_input_set_result_callback(
         text_input,
         text_input,

+ 1 - 1
nfc_maker/scenes/nfc_maker_scene_mail.c

@@ -16,7 +16,7 @@ void nfc_maker_scene_mail_on_enter(void* context) {
 
 
     text_input_set_header_text(text_input, "Enter Mail Address:");
     text_input_set_header_text(text_input, "Enter Mail Address:");
 
 
-    strlcpy(app->mail_buf, "ben.dover@yourmom.zip", MAIL_INPUT_LEN);
+    strlcpy(app->mail_buf, "johnsmith@email.com", MAIL_INPUT_LEN);
 
 
     text_input_set_result_callback(
     text_input_set_result_callback(
         text_input,
         text_input,