Fix dynamic raylib loading on Windows (#50)
This commit is contained in:
parent
0e225958e2
commit
77239a0e96
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ def raylib_library_path():
|
||||||
def so_name():
|
def so_name():
|
||||||
'''Returns the appropriate for the library on the current platform.'''
|
'''Returns the appropriate for the library on the current platform.'''
|
||||||
lib_filenames = {
|
lib_filenames = {
|
||||||
'Windows': 'libraylib.dll',
|
'Windows': 'raylib.dll',
|
||||||
'Linux': 'libraylib.so',
|
'Linux': 'libraylib.so',
|
||||||
'Darwin': 'libraylib.dylib',
|
'Darwin': 'libraylib.dylib',
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue