You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Make core/ includes absolute, remove subfolders from include path
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
This commit is contained in:
@@ -29,8 +29,8 @@
|
||||
/*************************************************************************/
|
||||
|
||||
#include "shader_language.h"
|
||||
#include "os/os.h"
|
||||
#include "print_string.h"
|
||||
#include "core/os/os.h"
|
||||
#include "core/print_string.h"
|
||||
static bool _is_text_char(CharType c) {
|
||||
|
||||
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '_';
|
||||
|
||||
Reference in New Issue
Block a user