Correct typos in logging
This commit is contained in:
committed by
Cameron Gutman
parent
b1ffa8a6c5
commit
881af5b566
@@ -884,7 +884,7 @@ namespace platf {
|
|||||||
|
|
||||||
// on error
|
// on error
|
||||||
if (polls_recv[x].revents & (POLLHUP | POLLRDHUP | POLLERR)) {
|
if (polls_recv[x].revents & (POLLHUP | POLLRDHUP | POLLERR)) {
|
||||||
BOOST_LOG(warning) << "Gamepad ["sv << x << "] file discriptor closed unexpectedly"sv;
|
BOOST_LOG(warning) << "Gamepad ["sv << x << "] file descriptor closed unexpectedly"sv;
|
||||||
|
|
||||||
polls.erase(poll);
|
polls.erase(poll);
|
||||||
effects.erase(effect_it);
|
effects.erase(effect_it);
|
||||||
|
|||||||
@@ -478,7 +478,7 @@ const KeyCodeMap kKeyCodesMap[] = {
|
|||||||
macos_input->last_mouse_event[2][0] = 0;
|
macos_input->last_mouse_event[2][0] = 0;
|
||||||
macos_input->last_mouse_event[2][1] = 0;
|
macos_input->last_mouse_event[2][1] = 0;
|
||||||
|
|
||||||
BOOST_LOG(debug) << "Display "sv << macos_input->display << ", pixel dimention: " << CGDisplayPixelsWide(macos_input->display) << "x"sv << CGDisplayPixelsHigh(macos_input->display);
|
BOOST_LOG(debug) << "Display "sv << macos_input->display << ", pixel dimension: " << CGDisplayPixelsWide(macos_input->display) << "x"sv << CGDisplayPixelsHigh(macos_input->display);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -100,7 +100,7 @@ namespace system_tray {
|
|||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
tray_quit_cb(struct tray_menu *item) {
|
tray_quit_cb(struct tray_menu *item) {
|
||||||
BOOST_LOG(info) << "Quiting from system tray"sv;
|
BOOST_LOG(info) << "Quitting from system tray"sv;
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// If we're running in a service, return a special status to
|
// If we're running in a service, return a special status to
|
||||||
|
|||||||
Reference in New Issue
Block a user