mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 20:59:00 +00:00
parent
311e777b50
commit
91f47ebea5
@ -21,6 +21,7 @@
|
||||
|
||||
#include "twine/parser/text.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/str-enc.h"
|
||||
#include "common/util.h"
|
||||
#include "common/translation.h"
|
||||
#include "twine/resources/hqr.h"
|
||||
@ -30,10 +31,10 @@ namespace TwinE {
|
||||
|
||||
void TextData::initCustomTexts(TextBankId textBankId) {
|
||||
if (textBankId == TextBankId::Options_and_menus) {
|
||||
add(textBankId, TextEntry{_c("High resolution on", "Options menu"), -1, TextId::kCustomHighResOptionOn});
|
||||
add(textBankId, TextEntry{_c("High resolution off", "Options menu"), -1, TextId::kCustomHighResOptionOff});
|
||||
add(textBankId, TextEntry{_c("Wall collision on", "Options menu"), -1, TextId::kCustomWallCollisionOn});
|
||||
add(textBankId, TextEntry{_c("Wall collision off", "Options menu"), -1, TextId::kCustomWallCollisionOff});
|
||||
add(textBankId, TextEntry{_c("High resolution on", "Options menu").encode(Common::CodePage::kDos850), -1, TextId::kCustomHighResOptionOn});
|
||||
add(textBankId, TextEntry{_c("High resolution off", "Options menu").encode(Common::CodePage::kDos850), -1, TextId::kCustomHighResOptionOff});
|
||||
add(textBankId, TextEntry{_c("Wall collision on", "Options menu").encode(Common::CodePage::kDos850), -1, TextId::kCustomWallCollisionOn});
|
||||
add(textBankId, TextEntry{_c("Wall collision off", "Options menu").encode(Common::CodePage::kDos850), -1, TextId::kCustomWallCollisionOff});
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user