mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-02 05:16:33 +00:00
Remove useless check.
This commit is contained in:
parent
83d6fd3cbb
commit
1b962e1b0d
@ -44,7 +44,7 @@ static PyObject* py_read_wram(PyObject *self, PyObject *args)
|
||||
if (!PyArg_ParseTuple(args, "I", &addr))
|
||||
return NULL;
|
||||
|
||||
if (addr >= max || addr < 0)
|
||||
if (addr >= max)
|
||||
{
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
|
Loading…
Reference in New Issue
Block a user