diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-12-18 02:23:39 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:37 +0200 |
| commit | 95b8b49b7602e4e2d3cd9e38273fa94451bec780 (patch) | |
| tree | 2680f7beffc79957bb057cb018d4d7bc5c8ff2a3 /src/win95/db.c | |
| parent | abab1011ac9f80ca3b734bd70415ff255965441b (diff) | |
More Warning cleanups (Tim Beckmann)
Diffstat (limited to 'src/win95/db.c')
| -rw-r--r-- | src/win95/db.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/win95/db.c b/src/win95/db.c index 13fc187..228bb1b 100644 --- a/src/win95/db.c +++ b/src/win95/db.c @@ -137,8 +137,10 @@ static int InitialisedLog = 0; static int db_display_type = DB_DOS; /* For DirectDraw mode. */ +#ifndef DB_NODIRECTDRAW static struct db_dd_mode_tag dd_mode = {NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0}; static fontPtr FontP = NULL; +#endif /* Volatile zero. */ static volatile int db_vol_zero = 0; @@ -150,10 +152,12 @@ static const char* db_assert_textA[ 3 ] = "Expression: %s", "File: %s Line: %d" }; +#if 0 static const char* db_prompt_std = "Quit program/force e(x)ception? [y/n/x]"; static const char* db_prompt_windows = "Quit program? [Yes/No]/force exception? [Cancel]"; +#endif static const char* db_assert_log_begin_text = "DB: FAILED ASSERTION BEGINS"; static const char* db_assert_log_end_text = |
