mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 16:44:04 +02:00
Implementation parameter name should match interface parameter name.
This commit is contained in:
parent
5194fb2ee6
commit
0000eac95f
1 changed files with 2 additions and 2 deletions
|
@ -923,8 +923,8 @@ void Application::pair() {
|
|||
PairingHandler::sendPairRequest();
|
||||
}
|
||||
|
||||
void Application::setRenderMirrored(bool head) {
|
||||
if (head) {
|
||||
void Application::setRenderMirrored(bool mirrored) {
|
||||
if (mirrored) {
|
||||
_manualFirstPerson->setChecked(false);
|
||||
_manualThirdPerson->setChecked(false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue