Re: Fresh Pair of Eyes
- Posted by ghaberek (admin) Apr 07, 2023
- 532 views
Yes. I looked through it and no errors come up and it says the DLL were loaded successfully. I've made a zip of my project so far. Maybe there is something I'm overlooking or some weird bug?
https://katfile.com/nl9g9d6tnpux/Tilengine.zip.html
OK, I think the DLL may not be loaded or opened using the open_dll() command.
Strange, it loads correctly for me. I downloaded my own copies of Tilengine.dll and SDL2.dll but the SHA256 hash matches for both files in your zip:
c2325ce01734ee1abe0f2a040d2ca8551012be3820a1fb2f32530d872df19517 SDL2.dll e4a3a5739512e78428e9062b63e8f9ac9da811c5c4b06b81bb94849804f77158 Tilengine.dll
I put both of these files in C:\Euphoria\bin. Are you sure you're using 64-bit eui.exe when testing this?
You could try manually loading SDL2 first. This would help determine which library is actually causing the problem.
public atom sdl2 = 0 public atom tile = 0 ifdef WINDOWS then sdl2 = open_dll("SDL2.dll") tile = open_dll("Tilengine1.dll") elsifdef LINUX or FREEBSD then sdl2 = open_dll("libSDL2-2.0.so.0") tile = open_dll("libTilengine.so") end ifdef ? sdl2 ? tile
2 hours and 26 minutes for 'slow speed' download! Use mediafire
It's throttled to 100 KB/sec but the file is only ~900 KB so after jumping through the captcha it only takes a few seconds to download.
-Greg