Skip to content
Snippets Groups Projects
Commit 77c7a293 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Address GCC warnings: case label value exceeds maximum value for type

parent ca9bac80
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2616 passed
......@@ -476,7 +476,7 @@ char sbbs_t::putmsgfrag(const char* buf, long& mode, long org_cols, JSObject* ob
if(mode&P_PETSCII) {
if(term&PETSCII) {
outcom(str[l]);
switch(str[l]) {
switch((uchar)str[l]) {
case '\r': // PETSCII "Return" / new-line
column = 0;
/* fall-through */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment