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():
|
||||
'''Returns the appropriate for the library on the current platform.'''
|
||||
lib_filenames = {
|
||||
'Windows': 'libraylib.dll',
|
||||
'Windows': 'raylib.dll',
|
||||
'Linux': 'libraylib.so',
|
||||
'Darwin': 'libraylib.dylib',
|
||||
}
|
||||
|
@ -83,4 +83,4 @@ WHITE =( 255, 255, 255, 255 )
|
|||
BLACK =( 0, 0, 0, 255 )
|
||||
BLANK =( 0, 0, 0, 0 )
|
||||
MAGENTA =( 255, 0, 255, 255 )
|
||||
RAYWHITE =( 245, 245, 245, 255 )
|
||||
RAYWHITE =( 245, 245, 245, 255 )
|
||||
|
|
Reference in a new issue