Skip to content

Commit

Permalink
Forgive a failure to import .opengl
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Apr 11, 2024
1 parent 2fbe285 commit f5775e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/libretro/driver/video/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from .driver import *
from .multi import *
from .software import *
from .opengl import *

try:
from .opengl import *
except ImportError:
pass

0 comments on commit f5775e4

Please sign in to comment.