Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/emulators/gngb/files/patch-src_sgb.h
16461 views
1
--- src/sgb.h.orig 2003-04-03 13:27:29 UTC
2
+++ src/sgb.h
3
@@ -39,12 +39,12 @@ typedef struct {
4
Uint8 player;
5
}SGB;
6
7
-SGB sgb;
8
+extern SGB sgb;
9
10
-Uint16 sgb_pal[4][4]; /* 4 pallete of 4 colour */
11
-Uint8 sgb_pal_map[20][18]; /* Map of Pallete Tiles */
12
+extern Uint16 sgb_pal[4][4]; /* 4 pallete of 4 colour */
13
+extern Uint8 sgb_pal_map[20][18]; /* Map of Pallete Tiles */
14
15
-Uint8 sgb_mask;
16
+extern Uint8 sgb_mask;
17
18
extern SDL_Surface *sgb_buf;
19
20
21