summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2023-03-06 14:58:58 +0100
committerRay <[email protected]>2023-03-06 14:58:58 +0100
commit614e0518a7740bb900539e8c92517acaf052232c (patch)
tree73b05455e69de45d866ce26eaad907328f85b417 /examples
parentcf1ebada0e0c18a02d48f091091418ce7b020b1e (diff)
downloadraylib-614e0518a7740bb900539e8c92517acaf052232c.tar.gz
raylib-614e0518a7740bb900539e8c92517acaf052232c.zip
Remove trailing spaces
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile10
-rw-r--r--examples/core/core_drop_files.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 574975d2..0b524015 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -297,17 +297,17 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
# --preload-file resources # specify a resources folder for data compilation
# --source-map-base # allow debugging in browser with source map
LDFLAGS += -s USE_GLFW=3 -s TOTAL_MEMORY=$(BUILD_WEB_HEAP_SIZE) -s FORCE_FILESYSTEM=1
-
+
# Build using asyncify
ifeq ($(BUILD_WEB_ASYNCIFY),TRUE)
LDFLAGS += -s ASYNCIFY
endif
-
+
# Add resources building if required
ifeq ($(BUILD_WEB_RESOURCES),TRUE)
LDFLAGS += --preload-file $(BUILD_WEB_RESOURCES_PATH)
endif
-
+
# Add debug mode flags if required
ifeq ($(BUILD_MODE),DEBUG)
LDFLAGS += -s ASSERTIONS=1 --profiling
@@ -316,7 +316,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
# Define a custom shell .html and output extension
LDFLAGS += --shell-file $(BUILD_WEB_SHELL)
EXT = .html
-
+
# NOTE: Simple raylib examples are compiled to be interpreter with asyncify, that way,
# we can compile same code for ALL platforms with no change required, but, working on bigger
# projects, code needs to be refactored to avoid a blocking while() loop, moving Update and Draw
@@ -354,7 +354,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(RAYLIB_LIBTYPE),SHARED)
LDLIBS += -lc
endif
-
+
# NOTE: On ARM 32bit arch, miniaudio requires atomics library
LDLIBS += -latomic
endif
diff --git a/examples/core/core_drop_files.c b/examples/core/core_drop_files.c
index b591cdea..9f622039 100644
--- a/examples/core/core_drop_files.c
+++ b/examples/core/core_drop_files.c
@@ -34,7 +34,7 @@ int main(void)
int filePathCounter = 0;
char *filePaths[MAX_FILEPATH_RECORDED] = { 0 }; // We will register a maximum of filepaths
-
+
// Allocate space for the required file paths
for (int i = 0; i < MAX_FILEPATH_RECORDED; i++)
{
@@ -94,7 +94,7 @@ int main(void)
// De-Initialization
//--------------------------------------------------------------------------------------
- for (int i = 0; i < MAX_FILEPATH_RECORDED; i++)
+ for (int i = 0; i < MAX_FILEPATH_RECORDED; i++)
{
RL_FREE(filePaths[i]); // Free allocated memory for all filepaths
}