Skip to content

Commit

Permalink
Release 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Jun 3, 2024
1 parent 853c879 commit cecdd3f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ 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.5] - 2024-06-03

### Fixed

- Allow `ModernGlVideoDriver`'s import of PyOpenGL
to fail with an `AttributeError`.

## [0.1.4] - 2024-06-03

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/libretro/drivers/video/opengl/moderngl.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

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

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

0 comments on commit cecdd3f

Please sign in to comment.