mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-16 02:56:09 -04:00
Dreamcast: Use blind dialling, partially addresses #1409
This commit is contained in:
parent
9d2b38d972
commit
529341fd7d
12
Makefile
12
Makefile
@ -185,15 +185,15 @@ ifeq ($(PLAT),dos)
|
||||
endif
|
||||
|
||||
|
||||
ifdef SDL2
|
||||
ifdef BUILD_SDL2
|
||||
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_SDL2
|
||||
LIBS += -lSDL2
|
||||
endif
|
||||
ifdef SDL3
|
||||
ifdef BUILD_SDL3
|
||||
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_SDL3
|
||||
LIBS += -lSDL3
|
||||
endif
|
||||
ifdef TERMINAL
|
||||
ifdef BUILD_TERMINAL
|
||||
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_TERMINAL -DCC_GFX_BACKEND=CC_GFX_BACKEND_SOFTGPU
|
||||
LIBS := $(subst mwindows,mconsole,$(LIBS))
|
||||
endif
|
||||
@ -246,11 +246,11 @@ dos:
|
||||
$(MAKE) $(TARGET) PLAT=dos
|
||||
# Default overrides
|
||||
sdl2:
|
||||
$(MAKE) $(TARGET) SDL2=1
|
||||
$(MAKE) $(TARGET) BUILD_SDL2=1
|
||||
sdl3:
|
||||
$(MAKE) $(TARGET) SDL3=1
|
||||
$(MAKE) $(TARGET) BUILD_SDL3=1
|
||||
terminal:
|
||||
$(MAKE) $(TARGET) TERMINAL=1
|
||||
$(MAKE) $(TARGET) BUILD_TERMINAL=1
|
||||
release:
|
||||
$(MAKE) $(TARGET) RELEASE=1
|
||||
|
||||
|
@ -692,7 +692,7 @@ static void InitModem(void) {
|
||||
ppp_init();
|
||||
|
||||
Platform_LogConst("Dialling modem.. (can take ~20 seconds)");
|
||||
err = ppp_modem_init("111111111111", 0, NULL);
|
||||
err = ppp_modem_init("111111111111", 1, NULL);
|
||||
if (err) {
|
||||
Platform_Log1("Establishing link failed (%i)", &err); return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user