Skip to content

Commit 2f0921a

Browse files
unused variables
1 parent 0c34bce commit 2f0921a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src_c/surface.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1275,9 +1275,8 @@ static PyObject *
12751275
surf_set_colorkey_raw(pgSurfaceObject *self, PyObject *args)
12761276
{
12771277
SDL_Surface *surf = pgSurface_AsSurface(self);
1278-
Uint32 flags = 0, color = 0;
1278+
Uint32 color = 0;
12791279
int result;
1280-
int hascolor = SDL_FALSE;
12811280

12821281
if (!PyArg_ParseTuple(args, "I", &color))
12831282
return NULL;

0 commit comments

Comments
 (0)