Skip to content

Commit

Permalink
Adding "tsx" word to literals
Browse files Browse the repository at this point in the history
  • Loading branch information
nataliapc committed Sep 25, 2024
1 parent 68dc520 commit bff3ac6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ std::string Version::full()
{
std::string result = strCat("openMSX ", VERSION);
if constexpr (!RELEASE) strAppend(result, '-', REVISION);
strAppend(result, " / TSX rev.3")
return result;
}

Expand Down
2 changes: 1 addition & 1 deletion src/cassette/CassettePlayer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace openmsx {
// TODO: this description is not entirely accurate, but it is used
// as an identifier for this audio device in e.g. Catapult. We should
// use another way to identify audio devices A.S.A.P.!
static constexpr static_string_view DESCRIPTION = "Cassetteplayer, use to read .cas or .wav files.";
static constexpr static_string_view DESCRIPTION = "Cassetteplayer, use to read .cas, .tsx, or .wav files.";

static constexpr unsigned DUMMY_INPUT_RATE = 44100; // actual rate depends on .cas/.wav file
static constexpr unsigned RECORD_FREQ = 44100;
Expand Down

0 comments on commit bff3ac6

Please sign in to comment.