diff options
| author | 2013-10-28 05:59:36 +0000 | |
|---|---|---|
| committer | 2013-10-28 05:59:36 +0000 | |
| commit | 6aceeec86c79e22a9a121576ceee8a55fede4fc0 (patch) | |
| tree | 89d147b61053557d7fc91b92745208ac8d5a32bf | |
| parent | 568100bd8bba1f31c90844a756173a2ccb5e646e (diff) | |
Still need the stub functions from debugwin.c for the NO_DEBUGGER case (nw)
| -rw-r--r-- | .gitattributes | 1 | ||||
| -rw-r--r-- | src/osd/sdl/debugwin.c | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 90a620ffcf3..87092fc380b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8559,6 +8559,7 @@ src/osd/sdl/debugqtview.c svneol=native#text/plain src/osd/sdl/debugqtview.h svneol=native#text/plain src/osd/sdl/debugqtwindow.c svneol=native#text/plain src/osd/sdl/debugqtwindow.h svneol=native#text/plain +src/osd/sdl/debugwin.c svneol=native#text/plain src/osd/sdl/draw13.c svneol=native#text/plain src/osd/sdl/drawogl.c svneol=native#text/plain src/osd/sdl/drawsdl.c svneol=native#text/plain diff --git a/src/osd/sdl/debugwin.c b/src/osd/sdl/debugwin.c new file mode 100644 index 00000000000..3306c7097be --- /dev/null +++ b/src/osd/sdl/debugwin.c @@ -0,0 +1,34 @@ +//============================================================ +// +// debugwin.c - stubs for linking when NO_DEBUGGER is defined +// +// Copyright (c) 1996-2010, Nicola Salmoria and the MAME Team. +// Visit http://mamedev.org for licensing and usage restrictions. +// +// SDLMAME by Olivier Galibert and R. Belmont +// +//============================================================ + +#if defined(NO_DEBUGGER) + +#include "sdlinc.h" + +#include "emu.h" +#include "osdepend.h" +#include "osdsdl.h" + +// win32 stubs for linking +void sdl_osd_interface::init_debugger() +{ +} + +void sdl_osd_interface::wait_for_debugger(device_t &device, bool firststop) +{ +} + +// win32 stubs for linking +void debugwin_update_during_game(running_machine &machine) +{ +} + +#endif |
