TITANIC: DE: Fix default code wheel letters

This commit is contained in:
Paul Gilbert 2017-10-07 22:06:00 -04:00
parent bca0a3f2da
commit 51275ea7a9
2 changed files with 5 additions and 1 deletions

View File

@ -162,4 +162,8 @@ bool CodeWheel::CheckCodeWheelsMsg(CCheckCodeWheelsMsg *msg) {
return true;
}
void CodeWheel::reset() {
_value = TRANSLATE(4, 14);
}
} // End of namespace Titanic

View File

@ -57,7 +57,7 @@ public:
/**
* Resets a code wheel back to the default 'O' value
*/
void reset() { _value = 4; }
void reset();
};
} // End of namespace Titanic