From ca552814639263f6319bde70fba77ccf96a29ca5 Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 10 Dec 2017 17:55:35 +0000 Subject: [PATCH] Added a compiler condition so we can play on Windows too --- breakout/breakout.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/breakout/breakout.c b/breakout/breakout.c index 9f67c34..0fcec33 100644 --- a/breakout/breakout.c +++ b/breakout/breakout.c @@ -1,5 +1,9 @@ - +#ifdef _WIN32 +#include +#include +#else #include +#endif #include void drawPaddle(SDL_Renderer *renderer, int paddleX, int paddleWidth);