From e9ca5b28a6108a6958bf6bf03a7a8f848cd33d6f Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 27 Mar 2016 22:26:34 +0200 Subject: [PATCH] iOS: Replaced #import with #include in two demos. This extension to C is not required here and made the demos less portable. --- Xcode-iOS/Demos/src/keyboard.c | 4 ++-- Xcode-iOS/Demos/src/mixer.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Xcode-iOS/Demos/src/keyboard.c b/Xcode-iOS/Demos/src/keyboard.c index 4fb45b94ae1f7..72db6a14abfae 100644 --- a/Xcode-iOS/Demos/src/keyboard.c +++ b/Xcode-iOS/Demos/src/keyboard.c @@ -4,8 +4,8 @@ * use however you want */ -#import "SDL.h" -#import "common.h" +#include "SDL.h" +#include "common.h" #define GLYPH_SIZE_IMAGE 16 /* size of glyphs (characters) in the bitmap font file */ #define GLYPH_SIZE_SCREEN 32 /* size of glyphs (characters) as shown on the screen */ diff --git a/Xcode-iOS/Demos/src/mixer.c b/Xcode-iOS/Demos/src/mixer.c index bd0cfb1dffc93..a2cc74d8e204c 100644 --- a/Xcode-iOS/Demos/src/mixer.c +++ b/Xcode-iOS/Demos/src/mixer.c @@ -4,8 +4,8 @@ * use however you want */ -#import "SDL.h" -#import "common.h" +#include "SDL.h" +#include "common.h" #define NUM_CHANNELS 8 /* max number of sounds we can play at once */ #define NUM_DRUMS 4 /* number of drums in our set */