From 9d64ee88a0c124a3115c809cc6ef7a177ee03a74 Mon Sep 17 00:00:00 2001
From: Alam Ed Arias <alam@srb2.org>
Date: Mon, 9 Sep 2019 15:02:13 -0400
Subject: [PATCH] Be clear on what FALLTHRU we really want

---
 src/d_main.c        | 2 +-
 src/g_game.c        | 2 +-
 src/sdl/i_system.c  | 2 +-
 src/win32/win_sys.c | 2 +-
 src/win32/win_vid.c | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/d_main.c b/src/d_main.c
index eaeae4b10f..9fa506bee4 100644
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -287,7 +287,7 @@ static void D_Display(void)
 				F_TitleScreenDrawer();
 				break;
 			}
-			// Intentional fall-through
+			/* FALLTHRU */
 		case GS_LEVEL:
 			if (!gametic)
 				break;
diff --git a/src/g_game.c b/src/g_game.c
index 89a96f3d0a..2b7a1c9813 100644
--- a/src/g_game.c
+++ b/src/g_game.c
@@ -4583,7 +4583,7 @@ void G_GhostTicker(void)
 				default:
 				case GHC_RETURNSKIN:
 					g->mo->skin = g->oldmo.skin;
-					// fallthru
+					/* FALLTHRU */
 				case GHC_NORMAL: // Go back to skin color
 					g->mo->color = g->oldmo.color;
 					break;
diff --git a/src/sdl/i_system.c b/src/sdl/i_system.c
index 98166a1cef..c4fb1c0fcc 100644
--- a/src/sdl/i_system.c
+++ b/src/sdl/i_system.c
@@ -530,7 +530,7 @@ static void Impl_HandleKeyboardConsoleEvent(KEY_EVENT_RECORD evt, HANDLE co)
 				break;
 			case VK_RETURN:
 				entering_con_command = false;
-				// Fall through.
+				/* FALLTHRU */
 			default:
 				event.data1 = MapVirtualKey(evt.wVirtualKeyCode,2); // convert in to char
 		}
diff --git a/src/win32/win_sys.c b/src/win32/win_sys.c
index d10f73b587..93b3ff5238 100644
--- a/src/win32/win_sys.c
+++ b/src/win32/win_sys.c
@@ -327,7 +327,7 @@ static inline VOID I_GetConsoleEvents(VOID)
 							break;
 						case VK_RETURN:
 							entering_con_command = false;
-							// Fall through.
+							/* FALLTHRU */
 						default:
 							ev.data1 = MapVirtualKey(input.Event.KeyEvent.wVirtualKeyCode,2); // convert in to char
 					}
diff --git a/src/win32/win_vid.c b/src/win32/win_vid.c
index e2f32fa618..11c7a6744b 100644
--- a/src/win32/win_vid.c
+++ b/src/win32/win_vid.c
@@ -322,9 +322,9 @@ static inline boolean I_SkipFrame(void)
 		case GS_LEVEL:
 			if (!paused)
 				return false;
-			/* FALLTHRU */
 		//case GS_TIMEATTACK: -- sorry optimisation but now we have a cool level platter and that being laggardly looks terrible
 #ifndef CLIENT_LOADINGSCREEN
+		/* FALLTHRU */
 		case GS_WAITINGPLAYERS:
 #endif
 			return skip; // Skip odd frames
-- 
GitLab