diff options
author | Treeki <treeki@gmail.com> | 2013-04-09 22:27:59 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2013-04-09 22:27:59 +0200 |
commit | f6d7c23a5643b637fc172bd0a40fb62e6abbb853 (patch) | |
tree | 74330934ba91cb9efe28f669e072b4d576a6348c /src | |
parent | 790e76d3731c98c59dc28a1a2b918ecdeb24bdde (diff) | |
download | kamek-f6d7c23a5643b637fc172bd0a40fb62e6abbb853.tar.gz kamek-f6d7c23a5643b637fc172bd0a40fb62e6abbb853.zip |
fix an overrun character from the end of a secret message
Diffstat (limited to '')
-rw-r--r-- | src/koopatlas/starcoin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/koopatlas/starcoin.cpp b/src/koopatlas/starcoin.cpp index 3da222b..b3e9de8 100644 --- a/src/koopatlas/starcoin.cpp +++ b/src/koopatlas/starcoin.cpp @@ -498,8 +498,8 @@ void dWMStarCoin_c::executeState_Wait() { L"and bosses suck less. Awesome,", L"right?!", L"Actually, I did it just to waste", - L"some time, but it ended up being", - L"pretty useful!", + L"some time, but it ended up", + L"being pretty useful!", }; const int msgCount2 = 9; static const wchar_t *msg2[msgCount2] = { |