lavoro 2 Report post Posted December 7, 2021 I would really like to play on Linux, but the proton valve steam couldn't run please help us Linux users 1 Share this post Link to post Share on other sites
Br0wns 8 Report post Posted December 13, 2021 Help linux users! Total of linux users: 1 ? Share this post Link to post Share on other sites
Sananda 567 Report post Posted December 13, 2021 (edited) Wartale on macOS xD Edited December 13, 2021 by Sananda Share this post Link to post Share on other sites
Cloud 167 Report post Posted December 13, 2021 13 minutes ago, Sananda said: Wartale on macOS xD I already posted a guide on how to use on Mac ? 1 Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted December 14, 2021 (edited) On 12/13/2021 at 3:53 PM, Br0wns said: Help linux users! Total of linux users: 1 ? You must be out of touch from reality. Linux gaming is on the rise, and with the release of Steam Deck, it will be a serious competitor to Windows. You must ask a big aumont of money from Microsoft/Apple to limit your potential users by making games/apps exclusive to a unique platform. Me as a dev i've already gave up wasting time on DirectX in favor of learning OpenGL. Much easier completely multi-platform, with more than enough performance. I expect a big downfall on Windows/DirectX exclusive titles from the release of Steam Deck onwards, Valve is really pushing hard on Linux Gaming and it's already making huge impact. As for running Wartale on Linux, i've succeeded to run it 100% a year ago before q u i ting. I've followed a guide on how to run a Ragnarok client on Linux, and all the commands and prep work with winetricks worked for Wartale. . Wartale worked 100% on Ubuntu 20.04 after following this guide. With a GTX1060, performance was around 50 to 70%, but was enough to play. IF your GPU is from AMD, expect a much better performance, since Nvidia drivers are crap on Linux (due to their closed source nature). I'll update these answers IF i manage to get Wartale running using Proton and/or Protontricks, to see if it has a better performance compared to Wine and Winetricks. (it shouldn't since Proton and Protontricks are forks/wrappers for Wine) Edited December 14, 2021 by DarkLink64 Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted December 14, 2021 Updated 2019-10-14 Install / Update Wine and Winetricks You will need the latest version of wine-stable. Do not install wine-staging due to glitches found in testings. Installation varies from distro to distro. For the best information, please follow the wiki on WineHQ. Here are links to popular distros: Ubuntu: https://wiki.winehq.org/Ubuntu Debian: https://wiki.winehq.org/Debian CentOS: https://wiki.winehq.org/CentOS/RHEL ArchLinux: https://wiki.archlinux.org/index.php/Wine Once you have wine installed or updated. Check the version by utilizing the command in terminal: wine --version terminal The output should say wine-4.0.2 or higher. Next, you need to get the latest version of winetricks. Version 20190912 was used in time of testing. Follow the guide on WineHQ: cd "${HOME}/Downloads" wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks sudo cp winetricks /usr/local/bin Source: https://wiki.winehq.org/Winetricks#Installing_winetricks If you are on Ubuntu, instead of the last command, do: sudo cp winetricks /usr/bin Preparation We need to start clean and setup the architecture to Win32. Delete your pre-configured $HOME/.wine folder via terminal command sudo rm -rf $HOME/.wine Setup a Win32 WINEPREFIX with the command WINEARCH=win32 wineboot --init Install required libraries and runtime via winetricks WINEARCH=win32 winetricks corefonts d3dx9_42 d3dx9_43 dinput dinput8 directx9 vcrun2008 vcrun2010 vcrun2013 vcrun2015 vcrun6 Make sure to click through all installation guides for each Visual Studio Runtime Redistributables as necessary such as Install .NET 3.5 via winetricks (forced). winetricks --force dotnet35 You will have to click on any continues that pops up. Install .NET 4.6.1 via winetricks (forced). winetricks --force dotnet461 Configuration Install in $HOME/.wine/drive_c/ folder. Configure wine to emulate a desktop of your liking. Type winecfg in terminal and go to Graphics tab. In this example I chose 1280x720. Press apply and close. Go to the game direction in terminal by cd $HOME/.wine/drive_c/game Running Patcher and Game To run the patcher, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. wine "launcher.exe" Once game is fully patched. Close it. To run the game, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. WINEDEBUG=warn+all,-d3d,-d3d_perf,-wgl,-ntdll wine game.exe NOTE: Debug output is required to avoid a race condition in the client. 3 2 Share this post Link to post Share on other sites
lavoro 2 Report post Posted December 15, 2021 18 hours ago, DarkLink64 said: Updated 2019-10-14 Install / Update Wine and Winetricks You will need the latest version of wine-stable. Do not install wine-staging due to glitches found in testings. Installation varies from distro to distro. For the best information, please follow the wiki on WineHQ. Here are links to popular distros: Ubuntu: https://wiki.winehq.org/Ubuntu Debian: https://wiki.winehq.org/Debian CentOS: https://wiki.winehq.org/CentOS/RHEL ArchLinux: https://wiki.archlinux.org/index.php/Wine Once you have wine installed or updated. Check the version by utilizing the command in terminal: wine --version terminal The output should say wine-4.0.2 or higher. Next, you need to get the latest version of winetricks. Version 20190912 was used in time of testing. Follow the guide on WineHQ: cd "${HOME}/Downloads" wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks sudo cp winetricks /usr/local/bin Source: https://wiki.winehq.org/Winetricks#Installing_winetricks If you are on Ubuntu, instead of the last command, do: sudo cp winetricks /usr/bin Preparation We need to start clean and setup the architecture to Win32. Delete your pre-configured $HOME/.wine folder via terminal command sudo rm -rf $HOME/.wine Setup a Win32 WINEPREFIX with the command WINEARCH=win32 wineboot --init Install required libraries and runtime via winetricks WINEARCH=win32 winetricks corefonts d3dx9_42 d3dx9_43 dinput dinput8 directx9 vcrun2008 vcrun2010 vcrun2013 vcrun2015 vcrun6 Make sure to click through all installation guides for each Visual Studio Runtime Redistributables as necessary such as Install .NET 3.5 via winetricks (forced). winetricks --force dotnet35 You will have to click on any continues that pops up. Install .NET 4.6.1 via winetricks (forced). winetricks --force dotnet461 Configuration Install in $HOME/.wine/drive_c/ folder. Configure wine to emulate a desktop of your liking. Type winecfg in terminal and go to Graphics tab. In this example I chose 1280x720. Press apply and close. Go to the game direction in terminal by cd $HOME/.wine/drive_c/game Running Patcher and Game To run the patcher, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. wine "launcher.exe" Once game is fully patched. Close it. To run the game, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. WINEDEBUG=warn+all,-d3d,-d3d_perf,-wgl,-ntdll wine game.exe NOTE: Debug output is required to avoid a race condition in the client. First of all i want to thank you for sharing your knowledge, but it didn't work for me, I did it exactly as it is in the description but on this command line it gave an error to install vcrun6 WINEARCH=win32 winetricks corefonts d3dx9_42 d3dx9_43 dinput dinput8 directx9 vcrun2008 vcrun2010 vcrun2013 vcrun2015 vcrun6 would that be the reason for not running? I believe that ant cheat is a problem too "and congratulations for commenting on the previous topic" Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted December 15, 2021 Post the errors from your terminal, so we can find a solution 1 Share this post Link to post Share on other sites
lavoro 2 Report post Posted December 16, 2021 vcrun6 installs normal, I didn't understand why the first time it gave an error after that the installation goes normal then, when I try to run wine launcher.exe, the window closes and shows this message and finally the terminal output with error, when I try to run WINEDEBUG=warn+all,-d3d,-d3d_perf,-wgl,-ntdll wine game.exe Spoiler 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 0074:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0074:warn:font:unix_face_create unable to parse font, falling back to FreeType 0074:warn:font:ft_face_get_full_name full name not found, using L"Small Fonts Regular" instead 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\wbem\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\WindowsPowershell\\v1.0\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\Z:\\usr\\lib32\\wine\\i386-windows\\winemac.drv" not found (c0000034) 0074:warn:file:NtCreateFile L"\\??\\Z:\\usr\\lib32\\wine\\winemac.drv" not found (c0000034) 0074:warn:module:load_dll Failed to load module L"winemac.drv"; status=c0000135 0074:warn:virtual:virtual_map_builtin_module L"\\??\\C:\\windows\\system32\\winex11.drv" found in WINEDLLPATH but not a builtin, ignoring 0074:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems. 0074:warn:keyboard:X11DRV_KEYBOARD_DetectLayout 7 keysyms per keycode not supported, set to 4 0074:warn:keyboard:X11DRV_KEYBOARD_DetectLayout Using closest match (Brazilian ABNT-2 keyboard layout) for scan/virtual codes mapping. 0074:warn:keyboard:X11DRV_InitKeyboard vkey 010D is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0124 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0126 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0121 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0125 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0127 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0123 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0128 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0122 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 012D is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 012E is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 01B3 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 01B3 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 012C is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 01B4 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard vkey 0003 is being used by more than one keycode 0074:warn:keyboard:X11DRV_InitKeyboard No more vkeys available! 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:ft_face_get_full_name full name not found, using L"Courier Regular" instead 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 008c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e900000 err = 2 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 008c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e900000 err = 2 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 008c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e700000 err = 2 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 008c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e700000 err = 2 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 008c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 008c:warn:font:unix_face_create unable to parse font, falling back to FreeType 008c:warn:font:ft_face_get_full_name full name not found, using L"Small Fonts Regular" instead 008c:warn:file:CreateFileW Unable to create file L"C:\\windows\\inf" (status c00000ba) 008c:warn:file:CreateFileW Unable to create file L"C:\\windows" (status c00000ba) 008c:warn:setupapi:SetupDiSelectBestCompatDrv No compatible drivers were enumerated for device L"HID\\VID_845E&PID_0001\\0&0000&0&0". 008c:warn:plugplay:install_device_driver Install function 0x17 failed, error 0xe0000228. 008c:warn:plugplay:load_function_driver No driver registered for device 00444FE0. 008c:warn:file:CreateFileW Unable to create file L"\\\\.\\pipe\\lrpc\\\\pipe\\wine_plugplay" (status c0000034) 008c:warn:rpc:rpcrt4_conn_open_pipe connection failed, error=2 008c:warn:seh:dispatch_exception unknown exception (code=6ba) raised 008c:warn:plugplay:send_devicechange Failed to send event, exception 0x6ba. 008c:warn:file:CreateFileW Unable to create file L"\\\\.\\pipe\\lrpc\\\\pipe\\wine_plugplay" (status c0000034) 008c:warn:rpc:rpcrt4_conn_open_pipe connection failed, error=2 008c:warn:seh:dispatch_exception unknown exception (code=6ba) raised 008c:warn:plugplay:send_devicechange Failed to send event, exception 0x6ba. 008c:warn:virtual:free_ranges_insert_view range 0x12f0000 - 0x1310000 is already mapped 008c:warn:file:CreateFileW Unable to create file L"C:\\windows\\inf" (status c00000ba) 008c:warn:file:CreateFileW Unable to create file L"C:\\windows" (status c00000ba) 008c:warn:setupapi:SetupDiSelectBestCompatDrv No compatible drivers were enumerated for device L"HID\\VID_845E&PID_0002\\0&0000&0&0". 008c:warn:plugplay:install_device_driver Install function 0x17 failed, error 0xe0000228. 008c:warn:plugplay:load_function_driver No driver registered for device 00483BA8. 008c:warn:file:CreateFileW Unable to create file L"\\\\.\\pipe\\lrpc\\\\pipe\\wine_plugplay" (status c0000034) 008c:warn:rpc:rpcrt4_conn_open_pipe connection failed, error=2 008c:warn:seh:dispatch_exception unknown exception (code=6ba) raised 008c:warn:plugplay:send_devicechange Failed to send event, exception 0x6ba. 008c:warn:file:CreateFileW Unable to create file L"\\\\.\\pipe\\lrpc\\\\pipe\\wine_plugplay" (status c0000034) 008c:warn:rpc:rpcrt4_conn_open_pipe connection failed, error=2 008c:warn:seh:dispatch_exception unknown exception (code=6ba) raised 008c:warn:plugplay:send_devicechange Failed to send event, exception 0x6ba. 008c:warn:virtual:free_ranges_insert_view range 0x1510000 - 0x1530000 is already mapped 008c:warn:virtual:free_ranges_insert_view range 0x1730000 - 0x1750000 is already mapped 0074:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems. 0074:warn:class:CLASS_RegisterClass Win extra bytes 48 is > 40 00a4:warn:virtual:free_ranges_insert_view range 0x320000 - 0x340000 is already mapped 00a4:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\plugplay.exe.manifest" not found (c0000034) 0074:warn:virtual:free_ranges_insert_view range 0xe00000 - 0xe20000 is already mapped 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"System Regular" instead 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"Fixedsys Regular" instead 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2ac000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2ac000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2ab000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2ab000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1255.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1256.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1257.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coure.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couree.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coureg.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/courer.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couret.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/cvgasys.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/hvgasys.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jsmalle.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgafix.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgasys.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1255.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1256.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1257.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalle.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallee.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalleg.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smaller.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallet.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1255.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1256.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1257.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee874.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1255.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1256.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1257.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef874.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserife.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifee.fon"/0x7e91d000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifeg.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifer.fon"/0x7e91a000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifet.fon"/0x7e91b000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriff.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffe.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffg.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffr.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifft.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/svgasys.fon"/0x7e91c000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgafix.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1255.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1256.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1257.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas874.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasys.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyse.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysg.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysr.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyst.fon"/0x7e91e000 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"Courier Regular" instead 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2ac000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2ac000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2ab000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00a4:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2ab000 err = 2 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 00a4:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00a4:warn:font:unix_face_create unable to parse font, falling back to FreeType 00a4:warn:font:ft_face_get_full_name full name not found, using L"Small Fonts Regular" instead 0040:warn:virtual:free_ranges_insert_view range 0x16d0000 - 0x16f0000 is already mapped 00a4:warn:virtual:free_ranges_insert_view range 0xd70000 - 0xd90000 is already mapped 00b0:warn:virtual:free_ranges_insert_view range 0xf90000 - 0xfb0000 is already mapped 00b4:warn:virtual:free_ranges_insert_view range 0x11b0000 - 0x11d0000 is already mapped 0068:warn:virtual:free_ranges_insert_view range 0x1590000 - 0x15b0000 is already mapped 0068:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\drivers\\iphlpapi.dll" not found (c0000034) 0068:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\drivers\\dnsapi.dll" not found (c0000034) 0068:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\drivers\\nsi.dll" not found (c0000034) 0074:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems. 003c:warn:virtual:free_ranges_insert_view range 0x18f0000 - 0x1910000 is already mapped 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"System Regular" instead 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"Fixedsys Regular" instead 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2a6000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2a6000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2a5000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2a5000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1255.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1256.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1257.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coure.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couree.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coureg.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/courer.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couret.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/cvgasys.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/hvgasys.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jsmalle.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgafix.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgasys.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1255.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1256.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1257.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalle.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallee.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalleg.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smaller.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallet.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1255.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1256.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1257.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee874.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1255.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1256.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1257.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef874.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserife.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifee.fon"/0xf7cb1000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifeg.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifer.fon"/0x7e2a7000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifet.fon"/0x7e2a8000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriff.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffe.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffg.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffr.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifft.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/svgasys.fon"/0xf7cb0000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgafix.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1255.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1256.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1257.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas874.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasys.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyse.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysg.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysr.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyst.fon"/0xf7cb2000 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"Courier Regular" instead 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2a6000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2a6000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2a5000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 002c:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2a5000 err = 2 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 002c:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 002c:warn:font:unix_face_create unable to parse font, falling back to FreeType 002c:warn:font:ft_face_get_full_name full name not found, using L"Small Fonts Regular" instead 002c:fixme:ver:GetCurrentPackageId (0031FEA4 00000000): stub 0024:warn:virtual:free_ranges_insert_view range 0x320000 - 0x340000 is already mapped 0024:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\start.exe.manifest" not found (c0000034) 0074:warn:virtual:free_ranges_insert_view range 0x1a30000 - 0x1a50000 is already mapped 0074:warn:virtual:free_ranges_insert_view range 0x1c70000 - 0x1c90000 is already mapped 00cc:warn:virtual:free_ranges_insert_view range 0x320000 - 0x340000 is already mapped 0074:warn:file:CreateFileW Unable to create file L"\\\\.\\pipe\\lrpc\\irpcss" (status c0000034) 0074:warn:rpc:rpcrt4_conn_open_pipe connection failed, error=2 0074:warn:seh:dispatch_exception unknown exception (code=6ba) raised 0040:warn:virtual:free_ranges_insert_view range 0x1b10000 - 0x1b30000 is already mapped 00cc:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\conhost.exe.manifest" not found (c0000034) 00dc:warn:virtual:free_ranges_insert_view range 0x320000 - 0x340000 is already mapped 00dc:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\rpcss.exe.manifest" not found (c0000034) 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"System Regular" instead 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"Fixedsys Regular" instead 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2ac000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2ac000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2ab000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2ab000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1255.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1256.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1257.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coure.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couree.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coureg.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/courer.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couret.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/cvgasys.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/hvgasys.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jsmalle.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgafix.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgasys.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1255.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1256.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1257.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalle.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallee.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalleg.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smaller.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallet.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1255.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1256.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1257.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee874.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1255.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1256.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1257.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef874.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserife.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifee.fon"/0xf7c60000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifeg.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifer.fon"/0x7e2ad000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifet.fon"/0x7e2ae000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriff.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffe.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffg.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffr.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifft.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/svgasys.fon"/0x7e2af000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgafix.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1255.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1256.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1257.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas874.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasys.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyse.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysg.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysr.fon"/0xf7c61000 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyst.fon"/0xf7c61000 0040:warn:virtual:free_ranges_insert_view range 0x1d30000 - 0x1d50000 is already mapped 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00e0:warn:virtual:free_ranges_insert_view range 0x1f50000 - 0x1f70000 is already mapped 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 00dc:warn:virtual:free_ranges_insert_view range 0xbb0000 - 0xbd0000 is already mapped 00e8:warn:virtual:free_ranges_insert_view range 0xdd0000 - 0xdf0000 is already mapped 00ec:warn:virtual:free_ranges_insert_view range 0xff0000 - 0x1010000 is already mapped 00ec:warn:virtual:free_ranges_insert_view range 0x1210000 - 0x1230000 is already mapped 00d4:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 00d4:warn:rpc:RPCRT4_io_thread receive failed with error 6be 00f0:warn:virtual:free_ranges_insert_view range 0x1430000 - 0x1450000 is already mapped 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"System Regular" instead 00f8:warn:virtual:free_ranges_insert_view range 0x1650000 - 0x1670000 is already mapped 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"Fixedsys Regular" instead 0034:warn:virtual:virtual_map_builtin_module L"\\??\\C:\\windows\\system32\\winex11.drv" found in WINEDLLPATH but not a builtin, ignoring 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2b3000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2b3000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2b2000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2b2000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1255.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1256.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coue1257.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coure.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couree.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/coureg.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/courer.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/couret.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/cvgasys.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/hvgasys.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jsmalle.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgafix.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/jvgasys.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1255.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1256.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smae1257.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalle.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallee.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smalleg.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smaller.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/smallet.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1255.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1256.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee1257.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssee874.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1255.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1256.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef1257.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/ssef874.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserife.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifee.fon"/0xf7f93000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifeg.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifer.fon"/0x7e2b4000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifet.fon"/0x7e2b5000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriff.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffe.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffg.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sseriffr.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/sserifft.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/svgasys.fon"/0x7e2b6000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgafix.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1255.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1256.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas1257.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgas874.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasys.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyse.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysg.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasysr.fon"/0xf7f94000 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:new_ft_face Ignoring font "/usr/share/wine/fonts/vgasyst.fon"/0xf7f94000 0034:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems. 0034:warn:keyboard:X11DRV_KEYBOARD_DetectLayout 7 keysyms per keycode not supported, set to 4 0034:warn:keyboard:X11DRV_KEYBOARD_DetectLayout Using closest match (Brazilian ABNT-2 keyboard layout) for scan/virtual codes mapping. 0034:warn:keyboard:X11DRV_InitKeyboard vkey 010D is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0124 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0126 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0121 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0125 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0127 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0123 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0128 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0122 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 012D is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 012E is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 01B3 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 01B3 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 012C is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 01B4 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard vkey 0003 is being used by more than one keycode 0034:warn:keyboard:X11DRV_InitKeyboard No more vkeys available! 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: embedded bitmap data. 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"Courier Regular" instead 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2ac000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2ac000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2ab000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 0024:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2ab000 err = 2 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 0024:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 0024:warn:font:unix_face_create unable to parse font, falling back to FreeType 0024:warn:font:ft_face_get_full_name full name not found, using L"Small Fonts Regular" instead 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported sfnt font: missing OS/2 table. 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"Courier Regular" instead 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalMonospace.CompositeFont"/0x7e2b3000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSansSerif.CompositeFont"/0x7e2b3000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalSerif.CompositeFont"/0x7e2b2000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 3cbfbbef 00cc:warn:font:new_ft_face Unable to load font "/home/toca/.wine/dosdevices/c:/windows/Fonts/GlobalUserInterface.CompositeFont"/0x7e2b2000 err = 2 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"MS Sans Serif Regular" instead 00cc:warn:font:opentype_get_ttc_sfnt_v1 unsupported font format 10d5a4d 00cc:warn:font:unix_face_create unable to parse font, falling back to FreeType 00cc:warn:font:ft_face_get_full_name full name not found, using L"Small Fonts Regular" instead O aplicativo não pôde ser iniciado ou não existe aplicativo associado ao arquivo especificado. ShellExecuteEx falhou: Formato EXE impróprio para C:\Wartale\game.exe. 00cc:fixme:ver:GetCurrentPackageId (0031FEA4 00000000): stub ~/.wine/drive_c/Wartale 0034:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems. 0034:warn:class:CLASS_RegisterClass Win extra bytes 48 is > 40 0034:warn:file:NtCreateFile L"\\??\\Z:\\home" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local\\share" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local\\share\\mime" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local\\share\\mime\\packages" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local\\share" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\Z:\\home\\toca\\.local\\share\\applications" not found (c0000035) 0034:warn:file:NtCreateFile L"\\??\\unix\\home\\toca\\.local\\share\\flatpak\\exports\\share\\mime\\globs" not found (c0000034) 0034:warn:file:CreateFileW Unable to create file L"\\\\?\\unix\\home\\toca\\.local\\share\\flatpak\\exports\\share\\mime\\globs" (status c0000034) 0034:warn:file:NtCreateFile L"\\??\\unix\\usr\\local\\share\\mime\\globs" not found (c0000034) 0034:warn:file:CreateFileW Unable to create file L"\\\\?\\unix\\usr\\local\\share\\mime\\globs" (status c0000034) 0034:warn:file:NtCreateFile L"\\??\\unix\\var\\lib\\snapd\\desktop\\mime\\globs" not found (c0000034) 0034:warn:file:CreateFileW Unable to create file L"\\\\?\\unix\\var\\lib\\snapd\\desktop\\mime\\globs" (status c0000034) 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\wbem\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\WindowsPowershell\\v1.0\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\wbem\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:file:NtQueryAttributesFile L"\\??\\C:\\windows\\system32\\WindowsPowershell\\v1.0\\%WinDir%\\System32\\notepad.exe" not found (c000003a) 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:warn:ver:find_version_resource Can't handle 0000 files. 0034:fixme:ver:GetCurrentPackageId (0031FEA4 00000000): stub 00f8:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 00f8:warn:rpc:RPCRT4_io_thread receive failed with error 6be 004c:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 004c:warn:rpc:RPCRT4_io_thread receive failed with error 6be 0088:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 0088:warn:rpc:RPCRT4_io_thread receive failed with error 6be 0064:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 0064:warn:rpc:RPCRT4_io_thread receive failed with error 6be 0050:warn:rpc:RPCRT4_SendWithAuth rpcrt4_conn_write failed (auth) 00e4:warn:rpc:RPCRT4_SendWithAuth rpcrt4_conn_write failed (auth) 00ac:warn:virtual:free_ranges_insert_view range 0x14b0000 - 0x14d0000 is already mapped 00e0:warn:virtual:free_ranges_insert_view range 0x1290000 - 0x12b0000 is already mapped 00ac:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 00ac:warn:rpc:RPCRT4_io_thread receive failed with error 6be 00e0:warn:rpc:RPCRT4_default_receive_fragment Short read of header, -1 bytes 00e0:warn:rpc:RPCRT4_io_thread receive failed with error 6be 00e4:warn:rpc:RPCRT4_SendWithAuth rpcrt4_conn_write failed (auth) 0050:warn:rpc:RPCRT4_SendWithAuth rpcrt4_conn_write failed (auth) 003c:fixme:ver:GetCurrentPackageId (0031FEA4 00000000): stub ~/.wine/drive_c/Wartale INT ✘ 1 Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted December 16, 2021 (edited) There are a few new stuff since i've played Wartale for the last time on Linux, that might cause the problem. One is crucial - Wartale is now 64 bits. I would advise you to wipe wine from your setup and install a pure 64 bit version of Wine, then do not use 32 bit wine_prefix. I strongly believe it will solve the BAD EXE FORMAT problem. Then, other few things that might cause problems: 1. Wartale now has two rendering backends, standard DirectX 9 and DirectX 9 Ex. I think Wartale defaults to DirectX 9 Ex. Problem must be with the Ex version. Try tweaking .config or .ini file on wartale directory and set non-ex dx9 as the backend. 2. Wine recommends to be never run as sudo. 3. Install the DirectX setup file on Wartale directx folder, through wine. Wartale requires some extensions of directx that normally doesn't not come installed on any Windows platform, and it is automatically installed when you first run Wartale. This auto install might not happen on Linux. 4. Disable multi-monitor, set to full screen exclusive As for the debug log, most of these are just warnings related to missing fonts and/or incompatibility between True Type (default of Windows) with Free Type. The game should run even with these warnings. Edited December 16, 2021 by DarkLink64 Share this post Link to post Share on other sites