I was compiling my game but for some reason this error comes out. Attached images of the code and the organization of the attached files.
Update 14/08
Apparently it was the Ñ that did not allow loading the file. Thank you all for your ideas.
Search found 14 matches
- Wed Aug 14, 2019 12:08 am
- Forum: Support and Development
- Topic: I need help with the compilation (Resolved)
- Replies: 3
- Views: 1322
- Wed Jul 17, 2019 8:25 pm
- Forum: Support and Development
- Topic: Does anyone know how to keep the window above others?
- Replies: 6
- Views: 2180
Re: Does anyone know how to keep the window above others?
If you're only targeting Windows, you can use ffi to call the relevant WinApi functions directly - you'd need FindWindow and SetWindowPos: - Set the title of the window to some unique string (in love) - Call FindWindow [ffi] with that string to retrieve the HWND of the main window - Call SetWindowP...
- Wed Jul 17, 2019 12:15 pm
- Forum: Support and Development
- Topic: Does anyone know how to keep the window above others?
- Replies: 6
- Views: 2180
- Wed Jul 17, 2019 12:50 am
- Forum: Support and Development
- Topic: Does anyone know how to keep the window above others?
- Replies: 6
- Views: 2180
Does anyone know how to keep the window above others?
I'm using Love2D and currently I need to make my window always the first one to be displayed. Does anyone have any idea how to do it?