mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-17 11:35:08 -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
|
endif
|
||||||
|
|
||||||
|
|
||||||
ifdef SDL2
|
ifdef BUILD_SDL2
|
||||||
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_SDL2
|
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_SDL2
|
||||||
LIBS += -lSDL2
|
LIBS += -lSDL2
|
||||||
endif
|
endif
|
||||||
ifdef SDL3
|
ifdef BUILD_SDL3
|
||||||
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_SDL3
|
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_SDL3
|
||||||
LIBS += -lSDL3
|
LIBS += -lSDL3
|
||||||
endif
|
endif
|
||||||
ifdef TERMINAL
|
ifdef BUILD_TERMINAL
|
||||||
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_TERMINAL -DCC_GFX_BACKEND=CC_GFX_BACKEND_SOFTGPU
|
CFLAGS += -DCC_WIN_BACKEND=CC_WIN_BACKEND_TERMINAL -DCC_GFX_BACKEND=CC_GFX_BACKEND_SOFTGPU
|
||||||
LIBS := $(subst mwindows,mconsole,$(LIBS))
|
LIBS := $(subst mwindows,mconsole,$(LIBS))
|
||||||
endif
|
endif
|
||||||
@ -246,11 +246,11 @@ dos:
|
|||||||
$(MAKE) $(TARGET) PLAT=dos
|
$(MAKE) $(TARGET) PLAT=dos
|
||||||
# Default overrides
|
# Default overrides
|
||||||
sdl2:
|
sdl2:
|
||||||
$(MAKE) $(TARGET) SDL2=1
|
$(MAKE) $(TARGET) BUILD_SDL2=1
|
||||||
sdl3:
|
sdl3:
|
||||||
$(MAKE) $(TARGET) SDL3=1
|
$(MAKE) $(TARGET) BUILD_SDL3=1
|
||||||
terminal:
|
terminal:
|
||||||
$(MAKE) $(TARGET) TERMINAL=1
|
$(MAKE) $(TARGET) BUILD_TERMINAL=1
|
||||||
release:
|
release:
|
||||||
$(MAKE) $(TARGET) RELEASE=1
|
$(MAKE) $(TARGET) RELEASE=1
|
||||||
|
|
||||||
|
@ -692,7 +692,7 @@ static void InitModem(void) {
|
|||||||
ppp_init();
|
ppp_init();
|
||||||
|
|
||||||
Platform_LogConst("Dialling modem.. (can take ~20 seconds)");
|
Platform_LogConst("Dialling modem.. (can take ~20 seconds)");
|
||||||
err = ppp_modem_init("111111111111", 0, NULL);
|
err = ppp_modem_init("111111111111", 1, NULL);
|
||||||
if (err) {
|
if (err) {
|
||||||
Platform_Log1("Establishing link failed (%i)", &err); return;
|
Platform_Log1("Establishing link failed (%i)", &err); return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user