1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
AnyOldName3 2024-03-15 00:11:19 +00:00
parent ff3ffa13b6
commit 9638fbabb4
2 changed files with 8 additions and 2 deletions

View File

@ -170,7 +170,10 @@ namespace MWInput
MWBase::Environment::get().getWindowManager()->notifyInputActionBound(); MWBase::Environment::get().getWindowManager()->notifyInputActionBound();
} }
void setDetectingKeyboard(bool detecting) { mDetectingKeyboard = detecting; } void setDetectingKeyboard(bool detecting)
{
mDetectingKeyboard = detecting;
}
private: private:
ICS::InputControlSystem* mInputBinder; ICS::InputControlSystem* mInputBinder;

View File

@ -190,7 +190,10 @@ namespace Debug
CurrentDebugLevel = Verbose; CurrentDebugLevel = Verbose;
} }
virtual std::streamsize writeImpl(const char* str, std::streamsize size, Level debugLevel) { return size; } virtual std::streamsize writeImpl(const char* str, std::streamsize size, Level debugLevel)
{
return size;
}
}; };
#if defined _WIN32 && defined _DEBUG #if defined _WIN32 && defined _DEBUG