aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNebuleon Fumika2013-01-06 01:07:42 -0500
committerNebuleon Fumika2013-01-06 01:07:42 -0500
commit81cf5b3cd1c7bae768846a1db1a527f3541feb8f (patch)
tree908c6300426bee5a975428e949f10a401f8ab8cc /README.md
parent6afa4a432b651e61696a87d6e971bada65e9a392 (diff)
downloadsnes9x2005-81cf5b3cd1c7bae768846a1db1a527f3541feb8f.tar.gz
snes9x2005-81cf5b3cd1c7bae768846a1db1a527f3541feb8f.tar.bz2
snes9x2005-81cf5b3cd1c7bae768846a1db1a527f3541feb8f.zip
Language message overhaul, part 1.
Clean up the names of messages. Mark those that are unused as such in code comments. Raise the CPU level while loading a message file, because it really does take half a second to load a 16 KB file on the lowest frequency (what the eff?).
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index 256e0f1..c4c1ffa 100644
--- a/README.md
+++ b/README.md
@@ -109,14 +109,12 @@ need to do the following:
be `, (char *) &lang[3]`.
* Still in `source/nds/gui.c`, find `case CHINESE_SIMPLIFIED`. Copy the lines
starting at the `case` and ending with `break`, inclusively. Paste them
- before the `}`. Change the language name and tags, and update the `cmplen`
- to be the length of the `START` tag. For the example of German, you would
- use `cmplen= 11;`, because that's the length of `STARTGERMAN`:
+ before the `}`. Change the language name and tags. For the example of
+ German, you would use:
```
case GERMAN:
strcpy(start, "STARTGERMAN");
strcpy(end, "ENDGERMAN");
- cmplen = 11;
break;
```