Full-screen issue fix: LINUX version only
David Gee (1833) 268 posts |
I’ve found a possible fix for the full-screen bug which affects the Linux version of RPCEmu: if you select full-screen mode, the mouse pointer no longer behaves correctly and tends to stick to the top left-hand corner. In the source files, edit rpcemu.h. Change line 70 from: #define mousehack (config.mousehackon && !fullscreen) to #define mousehack (config.mousehackon) and rebuild rpcemu using ‘make’. This stops ‘mousehack’ mode (i.e. ‘follows host mouse’) being deselected if full-screen mode is chosen. Just be sure NEVER to deselect ‘follows host mouse’ whether or not you apply this fix. |