mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
Removed some fake testing files. Now only initialize SDL's video and joystick systems - this avoids audio conflicts with RetroArch.
This commit is contained in:
parent
59ca4f301a
commit
21bd83d5b2
|
@ -9,11 +9,11 @@
|
|||
|
||||
int main()
|
||||
{
|
||||
if(SDL_Init(SDL_INIT_EVERYTHING) != 0)
|
||||
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) != 0)
|
||||
{
|
||||
std::cerr << "Error - could not initialize SDL!\n";
|
||||
std::cerr << " " << SDL_GetError() << "\n";
|
||||
std::cerr << "\nAre you in the 'video', 'audio', and 'input' groups?\n";
|
||||
std::cerr << "\nAre you in the 'video' and 'input' groups?\n";
|
||||
return 1;
|
||||
}
|
||||
if(TTF_Init() != 0)
|
||||
|
|
12
systems.cfg
12
systems.cfg
|
@ -1,12 +1,12 @@
|
|||
NAME=Super Nintendo Entertainment System
|
||||
PATH=./snes/
|
||||
PATH=../ROMs/snes/
|
||||
EXTENSION=.smc
|
||||
COMMAND=retroarch -L ~/libretro-pocketsnes.so %ROM%
|
||||
COMMAND=retroarch -L ~/cores/libretro-pocketsnes.so %ROM%
|
||||
|
||||
NAME=MAME
|
||||
PATH=./mame/
|
||||
EXTENSION=.zip
|
||||
COMMAND=echo %ROM%
|
||||
NAME=Nintendo Entertainment System
|
||||
PATH=../ROMs/nes/
|
||||
EXTENSION=.nes
|
||||
COMMAND=retroarch -L ~/cores/libretro-fceumm.so %ROM%
|
||||
|
||||
# This is just a dud to test error handling. Also, comment support! Woo!
|
||||
NAME=Fake System
|
||||
|
|
Loading…
Reference in a new issue