Skip to content

Commit 77239a0

Browse files
authored
Fix dynamic raylib loading on Windows (#50)
1 parent 0e22595 commit 77239a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dynamic/raylib/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def so_path():
3737
def so_name():
3838
'''Returns the appropriate for the library on the current platform.'''
3939
lib_filenames = {
40-
'Windows': 'libraylib.dll',
40+
'Windows': 'raylib.dll',
4141
'Linux': 'libraylib.so',
4242
'Darwin': 'libraylib.dylib',
4343
}
@@ -83,4 +83,4 @@ def so_name():
8383
BLACK =( 0, 0, 0, 255 )
8484
BLANK =( 0, 0, 0, 0 )
8585
MAGENTA =( 255, 0, 255, 255 )
86-
RAYWHITE =( 245, 245, 245, 255 )
86+
RAYWHITE =( 245, 245, 245, 255 )

0 commit comments

Comments
 (0)