Cartnich Posted November 7, 2016 Share Posted November 7, 2016 At least once a day when I use mumble, I will randomly get an error. If I ignore this error I can continue to use mumble, but as soon as I close the error window mumble closes also. Here is a screenshot of the error: http://i.imgur.com/I5HO4zT.pngCan anyone explain what this error is? Quote Link to comment Share on other sites More sharing options...
Administrators kissaki Posted November 9, 2016 Administrators Share Posted November 9, 2016 Not sure what could cause this, but GlobalShortcutWin is the logic that handles keyboard shortcuts like the push to talk key logic.That error seems to indicate that when Mumble tried to access a device through Windows, Windows returned an "unspecified" error.Do you have any devices that may switch ready state, become inaccessible, or you regularly plug and unplug?Do you have a fancy keyboard?Could you try unplugging unnecessary devices and see if the problem still occurs, and report back?---My findings:Code: GlobalShortcut_win.cpp L507From your Screenshot, the return HRESULT is 80004005The error returns are one of DIERR_DEVICENOTREG DIERR_INVALIDPARAM DIERR_NOINTERFACE , DIERR_NOTINITIALIZED , DIERR_OUTOFMEMORY.Winerror.h defines for "unspecified error" #define E_FAIL _HRESULT_TYPEDEF_(0x80004005L)DIERR_NOTINITIALIZED is constructed with MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_NOT_READY)1 << 31 | 7 << 16 | 21 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.