diff options
| author | Paul Gilbert | 2019-07-29 22:10:06 -0700 | 
|---|---|---|
| committer | Paul Gilbert | 2019-07-29 22:10:06 -0700 | 
| commit | 041132f5f6fc5ae5977f0d6916f54533df745a50 (patch) | |
| tree | 96e1c2c8be4392d21c97f97fb2827a660ede3853 | |
| parent | 97d4a60cfb635f59c2e35e144ce3337046f84977 (diff) | |
| download | scummvm-rg350-041132f5f6fc5ae5977f0d6916f54533df745a50.tar.gz scummvm-rg350-041132f5f6fc5ae5977f0d6916f54533df745a50.tar.bz2 scummvm-rg350-041132f5f6fc5ae5977f0d6916f54533df745a50.zip  | |
GLK: Fix illegal characters in detection entries
| -rw-r--r-- | engines/glk/glulxe/detection_tables.h | 2 | ||||
| -rw-r--r-- | engines/glk/tads/detection_tables.h | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/glulxe/detection_tables.h b/engines/glk/glulxe/detection_tables.h index de8f5a77bb..9ba9e3aac6 100644 --- a/engines/glk/glulxe/detection_tables.h +++ b/engines/glk/glulxe/detection_tables.h @@ -292,7 +292,7 @@ const PlainGameDescriptor GLULXE_GAME_LIST[] = {  	// Spanish games  	{ "alienlaaventura", "ALIEN: La Aventura" },  	{ "conrumbo", "Con Rumbo" }, -	{ "elultimohogarglulx", "Misterio en el Último Hogar" }, +	{ "elultimohogarglulx", "Misterio en el Ultimo Hogar" },  	{ "hhorcusglulx", "Homo Homini Orcus" },  	{ "kerulenglulx", "Ke rulen los petas" },  	{ "lanochedelensayo", "La Noche del Ensayo" }, diff --git a/engines/glk/tads/detection_tables.h b/engines/glk/tads/detection_tables.h index 807be79360..e89529c4f7 100644 --- a/engines/glk/tads/detection_tables.h +++ b/engines/glk/tads/detection_tables.h @@ -256,7 +256,7 @@ const PlainGameDescriptor TADS3_GAME_LIST[] = {  	{ "exoter", "Exoter" },  	// German games -	{ "pionierin", "Die Pionierin und die Tragödie des telematischen Typewriters" }, +	{ "pionierin", "Die Pionierin und die Tragodie des telematischen Typewriters" },  	// Italian games  	{ "remerook", "La missione di Kyle Remerook" },  | 
