• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!
  • Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Windows Can't load "accéntedPàth\myDll.dll" or any other 'special' char!

S

Sylbe

Guest
Hi,

I'm trying to load a dll for my game, and that doesn't work when :
1) my game is in a directory path like "C:\Users\Jérémie\Desktop\" (because of the "é" in "Jérémie")
2) my game isn't in such a directory, but the path or the name of the dll contarins accents

Sprites and other files also won't load if they are in an accented path or have an accented name.

spr = sprite_add('myPath\spr.png', ...); // works
spr = sprite_add('myPàth\spr.png', ...); // does not work
spr = sprite_add('myPath\sér.png', ...); // does not work

dllFunction = external_call('path\myDll.dll', ...); // works
dllFunction = external_call('pâth\myDll.dll', ...); // does not work


I really hope that's a stupid question and can be solved in a simple way (I tried ansi_char('pâth\myDll.dll') does not work either !)

Thank you very much for you time,
Sylbe
 
S

Sylbe

Guest
Hi,

xD Thanks for that ^^

I want my game to work for anyone, even if the Windows username has special chars in it !

I'm currently coding a MMORPG with friends (I've been on it for almost 4 years, has about 65 000 lines of code both written in GML and Object Pascal), it's a big game and is supposed to be playable by lots of people, not only by those who have "regular names" xD

But thank you for your answer, il would have worked if it has only been a local game, for my computer only !
I forgot to mention that ^^"

Have a nice day !
 
Top