- Issue #160 should be fixed now.
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@804 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
10
global.h
10
global.h
@@ -102,12 +102,22 @@ GFX2_GLOBAL dword Key_ANSI;
|
||||
#ifdef MOD_ALT
|
||||
#undef MOD_ALT
|
||||
#endif
|
||||
|
||||
#if defined(__macosx__)
|
||||
#ifdef MOD_META
|
||||
#undef MOD_META
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/// Key modifier for SHIFT key. Used as mask in ::Key, for example.
|
||||
#define MOD_SHIFT 0x1000
|
||||
/// Key modifier for CONTROL key. Used as mask in ::Key, for example.
|
||||
#define MOD_CTRL 0x2000
|
||||
/// Key modifier for ALT key. Used as mask in ::Key, for example.
|
||||
#define MOD_ALT 0x4000
|
||||
#if defined(__macosx__)
|
||||
#define MOD_META 0x8000
|
||||
#endif
|
||||
|
||||
/// Boolean set to true when the OS/window manager requests the application to close. ie: [X] button
|
||||
GFX2_GLOBAL byte Quit_is_required;
|
||||
|
||||
Reference in New Issue
Block a user