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',
|
||||||
}
|
}
|
||||||
|
@ -83,4 +83,4 @@ WHITE =( 255, 255, 255, 255 )
|
||||||
BLACK =( 0, 0, 0, 255 )
|
BLACK =( 0, 0, 0, 255 )
|
||||||
BLANK =( 0, 0, 0, 0 )
|
BLANK =( 0, 0, 0, 0 )
|
||||||
MAGENTA =( 255, 0, 255, 255 )
|
MAGENTA =( 255, 0, 255, 255 )
|
||||||
RAYWHITE =( 245, 245, 245, 255 )
|
RAYWHITE =( 245, 245, 245, 255 )
|
||||||
|
|
Reference in a new issue