File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,12 @@ surf_set_colorkey(pgSurfaceObject *self, PyObject *args);
154
154
static PyObject *
155
155
surf_get_colorkey (pgSurfaceObject * self , PyObject * args );
156
156
static PyObject *
157
+ surf_set_colorkey_raw (pgSurfaceObject * self , PyObject * args );
158
+ static PyObject *
159
+ surf_get_colorkey_raw (pgSurfaceObject * self , PyObject * args );
160
+ static PyObject *
161
+ surf_has_colorkey (pgSurfaceObject * self , PyObject * args );
162
+ static PyObject *
157
163
surf_set_alpha (pgSurfaceObject * self , PyObject * args );
158
164
static PyObject *
159
165
surf_get_alpha (pgSurfaceObject * self , PyObject * args );
@@ -1316,7 +1322,6 @@ surf_get_colorkey_raw(pgSurfaceObject *self, PyObject *_null)
1316
1322
{
1317
1323
SDL_Surface * surf = pgSurface_AsSurface (self );
1318
1324
Uint32 mapped_color ;
1319
- Uint8 r , g , b , a = 255 ;
1320
1325
1321
1326
SURF_INIT_CHECK (surf )
1322
1327
@@ -1331,8 +1336,6 @@ static PyObject *
1331
1336
surf_has_colorkey (pgSurfaceObject * self , PyObject * _null )
1332
1337
{
1333
1338
SDL_Surface * surf = pgSurface_AsSurface (self );
1334
- Uint32 mapped_color ;
1335
- Uint8 r , g , b , a = 255 ;
1336
1339
1337
1340
SURF_INIT_CHECK (surf )
1338
1341
You can’t perform that action at this time.
0 commit comments