nwlink 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eadk/eadk.h +2 -2
- package/dist/index.js +1 -1
- package/nwlink-0.0.16.tgz +0 -0
- package/package.json +1 -1
package/dist/eadk/eadk.h
CHANGED
|
@@ -30,8 +30,8 @@ typedef struct {
|
|
|
30
30
|
// Keyboard and Events
|
|
31
31
|
|
|
32
32
|
#define EADK_SCREEN_WIDTH 320
|
|
33
|
-
#define
|
|
34
|
-
static const eadk_rect_t eadk_screen_rect = {0, 0, EADK_SCREEN_WIDTH,
|
|
33
|
+
#define EADK_SCREEN_HEIGHT 240
|
|
34
|
+
static const eadk_rect_t eadk_screen_rect = {0, 0, EADK_SCREEN_WIDTH, EADK_SCREEN_HEIGHT};
|
|
35
35
|
|
|
36
36
|
typedef uint64_t eadk_keyboard_state_t;
|
|
37
37
|
typedef enum {
|