Cleanup, mostly network threading madness. Statusbar is now created at hard reset, IF the configuration has changed. Other minor things.

This commit is contained in:
waltje
2017-10-29 04:20:20 -05:00
parent f4367133e7
commit bfe038ded9
37 changed files with 506 additions and 600 deletions

View File

@@ -8,7 +8,7 @@
*
* Host to guest keyboard interface and keyboard scan code sets.
*
* Version: @(#)keyboard.c 1.0.6 2017/10/24
* Version: @(#)keyboard.c 1.0.7 2017/10/28
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -580,11 +580,11 @@ keyboard_isfsexit(void)
int
keyboard_ismsexit(void)
{
#ifdef WIN32
#ifdef _WIN32
/* Windows: F8+F12 */
return( recv_key[0x42] && recv_key[0x58] );
#else
/* Linux: CTRL+END */
/* WxWidgets cannot do two regular keys.. CTRL+END */
return( (recv_key[0x1D] || recv_key[0x9D]) && recv_key[0xCF] );
#endif
}