diff options
author | D G Turner | 2019-09-16 01:21:06 +0100 |
---|---|---|
committer | D G Turner | 2019-09-16 01:21:06 +0100 |
commit | b2d3ead00414cfbc772ed0f3d57ac5f2d15130cc (patch) | |
tree | 65ce8b0ac2899de60a055b7e85c33c38e96f0caf /engines | |
parent | cbb5a317157f8f9f9a72570215ea572b2648d673 (diff) | |
download | scummvm-rg350-b2d3ead00414cfbc772ed0f3d57ac5f2d15130cc.tar.gz scummvm-rg350-b2d3ead00414cfbc772ed0f3d57ac5f2d15130cc.tar.bz2 scummvm-rg350-b2d3ead00414cfbc772ed0f3d57ac5f2d15130cc.zip |
DIRECTOR: Fix Some MSVC Warnings
These were reported by Henke37 via IRC.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/director/lingo/lingo-gr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/director/lingo/lingo-gr.cpp b/engines/director/lingo/lingo-gr.cpp index c908b2e591..744049e4dc 100644 --- a/engines/director/lingo/lingo-gr.cpp +++ b/engines/director/lingo/lingo-gr.cpp @@ -1470,11 +1470,13 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep) # else YYUSE (yyoutput); # endif +/* switch (yytype) { default: break; } +*/ } @@ -1832,12 +1834,14 @@ yydestruct (yymsg, yytype, yyvaluep) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); +/* switch (yytype) { default: break; } +*/ } |