This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
../../../../proton/wine/dlls/dinput/joystick_sdl.c: In function ‘find_sdldevs’: | |
../../../../proton/wine/dlls/dinput/joystick_sdl.c:260:13: error: unknown type name ‘SDL_JoystickType’ | |
SDL_JoystickType type = SDL_JoystickGetType(device); | |
^~~~~~~~~~~~~~~~ | |
../../../../proton/wine/dlls/dinput/joystick_sdl.c:260:37: warning: implicit declaration of function ‘SDL_JoystickGetType’ [-Wimplicit-function-declaration] | |
SDL_JoystickType type = SDL_JoystickGetType(device); | |
^~~~~~~~~~~~~~~~~~~ | |
../../../../proton/wine/dlls/dinput/joystick_sdl.c:262:25: error: ‘SDL_JOYSTICK_TYPE_WHEEL’ undeclared (first use in this function) | |
type == SDL_JOYSTICK_TYPE_WHEEL || | |
^~~~~~~~~~~~~~~~~~~~~~~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export namespace QueueName { | |
export namespace Thing1 { | |
export const Created = process.env.AMQP_QUEUE_THING1_CREATED || "thing1/created"; | |
} | |
export namespace Thing2 { | |
export const Requested = process.env.AMQP_QUEUE_THING2_REQUESTED || "thing2/requested"; | |
export const Updated = process.env.AMQP_QUEUE_THING2_UPDATED || "thing2/updated"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
** (process:28916): DEBUG: 01:55:38.851: ComponentWatcher.vala:50: STARTING process: io.elementary.greeter-compositor | |
(process:28916): Gdk-CRITICAL **: 01:55:38.851: gdk_display_get_app_launch_context: assertion 'GDK_IS_DISPLAY (display)' failed | |
(process:28916): GLib-GObject-WARNING **: 01:55:38.851: invalid (NULL) pointer instance | |
(process:28916): GLib-GObject-CRITICAL **: 01:55:38.851: g_signal_connect_object: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed | |
(process:28916): GLib-GObject-WARNING **: 01:55:38.851: invalid (NULL) pointer instance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wine: Unhandled page fault on read access to 0x00000170 at address 0x909fdf7 (thread 0210), starting debugger... | |
Unhandled exception: page fault on read access to 0x00000170 in 32-bit code (0x0909fdf7). | |
Register dump: | |
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b | |
EIP:0909fdf7 ESP:08f27e00 EBP:08f27e60 EFLAGS:00010287( R- -- I S - -P-C) | |
EAX:00000000 EBX:00000000 ECX:0f9c55b1 EDX:00000001 | |
ESI:11eba4a4 EDI:11b4b9e8 | |
Stack dump: | |
0x08f27e00: 076e2bd1 11b4bbf4 11b4b9e8 03e24018 | |
0x08f27e10: 11eba4a0 11eba4f0 11eba4f0 08f27e90 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unhandled exception: unimplemented function KERNEL32.dll.GetQueuedCompletionStatusEx called in 32-bit code (0x7bc7aee0). | |
Register dump: | |
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b | |
EIP:7bc7aee0 ESP:00c4e600 EBP:00c4e664 EFLAGS:00000202( - -- I - - - ) | |
EAX:00600722 EBX:7bd0c5c4 ECX:00c4e6b4 EDX:00110060 | |
ESI:00c4e60c EDI:7b47e2b0 | |
Stack dump: | |
0x00c4e600: 00169cb0 00000000 00c4e630 80000100 | |
0x00c4e610: 00000001 00000000 7bc7aee0 00000002 | |
0x00c4e620: 00600f8e 00600722 00000034 00110014 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Assets.Game.Scripts.Network; | |
namespace Assets.Game.Scripts | |
{ | |
public class GrimReaper | |
{ |
NewerOlder