Reputation: 4627
I am trying to run an SDL application with very basic code on Cygwin, but I have the following error after calling SDL_Init
:
No available video device
I have X11 packages installed, but that isn't solving the issue
Upvotes: 3
Views: 1175
Reputation: 1703
You need to start the X server and set the DISPLAY
variable appropriately before running an X program.
Upvotes: 3