diff options
| author | Matt Hargett | 2002-09-22 03:53:53 +0000 |
|---|---|---|
| committer | Matt Hargett | 2002-09-22 03:53:53 +0000 |
| commit | 8390b0cc53b2025108eee9a8ea9ee7f411edd55e (patch) | |
| tree | 5ca2452114d38060824e0edee01ce7955132ad37 /scumm/dialogs.cpp | |
| parent | fbe9c544de19cc4a7f28e2dbf1fdebaf351b83ee (diff) | |
| download | scummvm-rg350-8390b0cc53b2025108eee9a8ea9ee7f411edd55e.tar.gz scummvm-rg350-8390b0cc53b2025108eee9a8ea9ee7f411edd55e.tar.bz2 scummvm-rg350-8390b0cc53b2025108eee9a8ea9ee7f411edd55e.zip | |
2002-09-21 Matt Hargett <matt@use.net>
* scumm.dsp, scummvm.dsp, simon.dsp: Turn on warning as errors. Generate
PDBs on all builds.
* gameDetector.cpp, newgui.cpp, widget.cpp, actor.cpp,
dialogs.cpp, resource.cpp, saveload.cpp, scumm_renderer.cpp:
Fix warnings where possible. One pragma added to eliminate
warning of unknown pragmas.
* string.cpp: If unknown escape sequence, print warning.
svn-id: r4998
Diffstat (limited to 'scumm/dialogs.cpp')
| -rw-r--r-- | scumm/dialogs.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index c1292e3734..a9080737dc 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -30,6 +30,11 @@ #include "common/config-file.h" +#ifdef _MSC_VER +# pragma warning( disable : 4068 ) +#endif + + struct ResString { int num; char string[80]; |
