diff options
author | D G Turner | 2019-12-19 14:49:07 +0000 |
---|---|---|
committer | D G Turner | 2019-12-19 14:49:07 +0000 |
commit | 0ff7f10a507a829261e74d553a3b1ac3d5966d05 (patch) | |
tree | a3a2266db91c773863204ce3f24fffff8692604b /engines | |
parent | 3fb386a2f927a93f373dca68d8be9099cc74537e (diff) | |
download | scummvm-rg350-0ff7f10a507a829261e74d553a3b1ac3d5966d05.tar.gz scummvm-rg350-0ff7f10a507a829261e74d553a3b1ac3d5966d05.tar.bz2 scummvm-rg350-0ff7f10a507a829261e74d553a3b1ac3d5966d05.zip |
GLK: ADRIFT: Fix Unused Constant Compiler Warning
Diffstat (limited to 'engines')
-rw-r--r-- | engines/glk/adrift/serialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/adrift/serialization.cpp b/engines/glk/adrift/serialization.cpp index 02939ccbc6..e34d343634 100644 --- a/engines/glk/adrift/serialization.cpp +++ b/engines/glk/adrift/serialization.cpp @@ -30,7 +30,7 @@ namespace Adrift { /* Assorted definitions and constants. */ static const sc_char NEWLINE = '\n'; static const sc_char CARRIAGE_RETURN = '\r'; -static const sc_char NUL = '\0'; +// Unused static const sc_char NUL = '\0'; enum { BUFFER_SIZE = 4096 }; |