mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 06:27:17 +00:00
fixed a bug which caused some texts not to be translated
This commit is contained in:
parent
c442bdffd3
commit
a11ffd2845
@ -362,7 +362,7 @@ int main() {
|
||||
|
||||
printf("hashcode hashval = 0x%x;\n\n", hashval);
|
||||
|
||||
printf("sentence all_sentences[%d] = {\n", size(allsent));
|
||||
printf("sentence all_sentences[] = {\n", size(allsent));
|
||||
|
||||
for(map<hashcode,string>::iterator it = ms.begin(); it != ms.end(); it++) {
|
||||
string s = it->second;
|
||||
@ -374,7 +374,7 @@ int main() {
|
||||
}
|
||||
printf(" };\n\n");
|
||||
|
||||
printf("fullnoun all_nouns[%d] = {\n", size(allnouns));
|
||||
printf("fullnoun all_nouns[] = {\n", size(allnouns));
|
||||
|
||||
for(map<hashcode,string>::iterator it = mn.begin(); it != mn.end(); it++) {
|
||||
string s = it->second;
|
||||
|
Loading…
Reference in New Issue
Block a user