Skip to content

Commit

Permalink
Release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Jun 3, 2024
1 parent cecdd3f commit 177b2a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
> breaking changes may be introduced
> at any time without warning.
## [0.1.6] - 2024-06-03

### Changed

- Don't catch a failure to import `OpenGL` in `moderngl.py`.

## [0.1.5] - 2024-06-03

### Fixed
Expand Down
6 changes: 1 addition & 5 deletions src/libretro/drivers/video/opengl/moderngl.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@
VertexArray,
create_context,
)

try:
from OpenGL import GL
except ImportError | AttributeError:
GL = None
from OpenGL import GL

from libretro.api.av import retro_game_geometry, retro_system_av_info
from libretro.api.video import (
Expand Down

0 comments on commit 177b2a4

Please sign in to comment.