Spelling fixes

This commit is contained in:
Robin Jones 2023-03-07 02:23:19 +00:00
parent fc3e3c6c24
commit a8bd203b82
4 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,7 @@ body:
If you have a **question**, need clarification on something, need help on a particular situation or want to start a discussion, **DO NOT** open an issue here. _It will be automatically closed!_ If you have a **question**, need clarification on something, need help on a particular situation or want to start a discussion, **DO NOT** open an issue here. _It will be automatically closed!_
First raise it in discussions. First raise it in discussions.
If you realy want to raise an issue, please make sure to follow the template and provide the required information. If you really want to raise an issue, please make sure to follow the template and provide the required information.
Failing to do so will most likely end up on the issue being close. Don't take offense at this. Failing to do so will most likely end up on the issue being close. Don't take offense at this.
It is simply a time management decision. It is simply a time management decision.
Whenever an issue is raised without following the template and the required information is not provided, very often too much time has to be spent going back and forth to obtain the details that are outlined below. Whenever an issue is raised without following the template and the required information is not provided, very often too much time has to be spent going back and forth to obtain the details that are outlined below.
@ -55,9 +55,9 @@ body:
required: false required: false
- type: textarea - type: textarea
id: expected_behaviour id: expected_behavior
attributes: attributes:
label: Expected behaviour label: Expected behavior
description: A clear and concise description of what you expected to happen. If applicable. description: A clear and concise description of what you expected to happen. If applicable.
validations: validations:
required: false required: false
@ -74,7 +74,7 @@ body:
- type: textarea - type: textarea
id: other_things id: other_things
attributes: attributes:
label: Aditional information label: Additional information
description: Other suggested things. If applicable/relevant. description: Other suggested things. If applicable/relevant.
placeholder: | placeholder: |
for example link to the repository with sample code for example link to the repository with sample code

View File

@ -11,7 +11,7 @@ body:
If you have a **question**, need clarification on something, need help on a particular situation or want to start a discussion, **DO NOT** open an issue here. _It will be automatically closed!_ If you have a **question**, need clarification on something, need help on a particular situation or want to start a discussion, **DO NOT** open an issue here. _It will be automatically closed!_
If you realy want to raise an issue, please make sure to follow the template and provide the required information. Failing to do so will most likely end up on the issue being close. Don't take offense at this. It is simply a time management decision. Whenever an issue is raised without following the template and the required information is not provided, very often too much time has to be spent going back and forth to obtain the details that are outlined below. If you really want to raise an issue, please make sure to follow the template and provide the required information. Failing to do so will most likely end up on the issue being close. Don't take offense at this. It is simply a time management decision. Whenever an issue is raised without following the template and the required information is not provided, very often too much time has to be spent going back and forth to obtain the details that are outlined below.
- type: textarea - type: textarea
id: description id: description
@ -46,7 +46,7 @@ body:
label: Additional context label: Additional context
description: Add any other context or screenshots about the feature request here. description: Add any other context or screenshots about the feature request here.
placeholder: | placeholder: |
code snnipets code snippets
screenshots screenshots
mockups mockups
validations: validations:

View File

View File

@ -126,7 +126,7 @@ void menu_main_init (settings_t *settings) {
printf("%s\n", current_filename); printf("%s\n", current_filename);
if (str_endswith(current_filename, ".z64") || str_endswith(current_filename, ".n64") || str_endswith(current_filename, ".v64")) { if (str_endswith(current_filename, ".z64") || str_endswith(current_filename, ".n64") || str_endswith(current_filename, ".v64")) {
assertf(flashcart_load_rom(current_filename) == FLASHCART_OK, "ROM load error"); assertf(flashcart_load_rom(current_filename) == FLASHCART_OK, "ROM load error");
break; break; //required!
} }
else { else {
printf("Failed... Returning to menu...\n"); printf("Failed... Returning to menu...\n");