Skip to content

Commit 2c19b19

Browse files
author
Electric26
authored
EOF newlines and executable scripts/ (#199)
* gave scripts/ executable permission * added newlines to EOFs * removed duplicate include directive
1 parent ff23875 commit 2c19b19

116 files changed

Lines changed: 112 additions & 116 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ ColumnLimit: 90
1919

2020
AlwaysBreakTemplateDeclarations: true
2121

22-
PointerAlignment: Left
22+
PointerAlignment: Left

cmake_modules/FindSFML.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,4 @@ endif()
246246

247247
if(SFML_FOUND AND NOT SFML_FIND_QUIETLY)
248248
message(STATUS "Found SFML ${SFML_VERSION_MAJOR}.${SFML_VERSION_MINOR}.${SFML_VERSION_PATCH} in ${SFML_INCLUDE_DIR}")
249-
endif()
249+
endif()

config.obd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
cap_fps 0
32
fps_limit 60
43
fov 90
@@ -10,4 +9,4 @@ vertical_sensitivity 1
109
horizontal_sensitivity 1
1110
skin player
1211
texture_pack default
13-
shouldShowInstructions 1
12+
shouldShowInstructions 1

credits.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ Massive help with the world generation algorithms
77
Ruixel -> https://github.com/Ruixel
88

99
Added support for custom player skins
10-

deps/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ add_library(glad glad/glad.c)
55
add_library(enet enet/enet_impl.cpp)
66

77
#lua
8-
add_subdirectory(lua)
8+
add_subdirectory(lua)

deps/enet/enet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5903,4 +5903,4 @@ extern "C" {
59035903
#endif
59045904

59055905
#endif // ENET_IMPLEMENTATION
5906-
#endif // ENET_INCLUDE_H
5906+
#endif // ENET_INCLUDE_H

deps/enet/enet_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
#ifdef __GNUC__
1515
#pragma GCC diagnostic pop
16-
#endif
16+
#endif

deps/lua/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ add_library(lua
3434
lua.c
3535
lauxlib.c
3636
luac.c
37-
)
37+
)

deps/lua/lua.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,4 +610,4 @@ int main (int argc, char **argv) {
610610
return (result && status == LUA_OK) ? EXIT_SUCCESS : EXIT_FAILURE;
611611
}
612612
613-
*/
613+
*/

docs/Lua_Voxels.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)